diff --git a/.github/workflows/publish.edyml b/.github/workflows/publish.edyml deleted file mode 100644 index cfa428f..0000000 --- a/.github/workflows/publish.edyml +++ /dev/null @@ -1,30 +0,0 @@ -on: - push: - branches: - - master - -jobs: - build: - runs-on: ubuntu-22.04 - permissions: - packages: write - contents: read - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Login to container repository - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push project - uses: docker/build-push-action@v4 - with: - push: true - tags: | - ghcr.io/${{ github.repository }}:latest - ghcr.io/${{ github.repository }}:${{ github.run_number }}