diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..964c85a --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,16 @@ +name: publish.yml +on: + push: + branches: + - main +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout + - name: Build and push Docker image + id: push + uses: docker/build-push-action + with: + push: true + tags: docker.io/tikaiz/website-frontend:latest