Skip to content

Refactor build step and update task list #4

Refactor build step and update task list

Refactor build step and update task list #4

Workflow file for this run

name: Deploy Images to GHCR
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build Image'
run: |
docker build . --tag ghcr.io/timesurgelabs/htmxgpt:latest
docker push ghcr.io/timesurgelabs/htmxgpt:latest