diff options
Diffstat (limited to '.github/workflows/build-image.yml')
-rw-r--r-- | .github/workflows/build-image.yml | 24 |
1 files changed, 5 insertions, 19 deletions
diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index c0a4976b1..97a363d1e 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -4,8 +4,6 @@ on: push: branches: - 'main' - tags: - - '*' pull_request: paths: - .github/workflows/build-image.yml @@ -28,34 +26,22 @@ jobs: - uses: docker/setup-qemu-action@v2 - uses: docker/setup-buildx-action@v2 - - name: Log in to Docker Hub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - if: github.repository == 'mastodon/mastodon' && github.event_name != 'pull_request' - - name: Log in to the Github Container registry uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - if: github.repository == 'mastodon/mastodon' && github.event_name != 'pull_request' + if: github.event_name != 'pull_request' - uses: docker/metadata-action@v4 id: meta with: - images: | - tootsuite/mastodon - ghcr.io/mastodon/mastodon - flavor: | - latest=auto + images: ghcr.io/${{ github.repository_owner }}/mastodon tags: | + type=raw,value=latest,enable={{is_default_branch}} type=edge,branch=main - type=pep440,pattern={{raw}} - type=pep440,pattern=v{{major}}.{{minor}} - type=ref,event=pr + type=sha,prefix=,format=long - uses: docker/build-push-action@v4 with: @@ -63,7 +49,7 @@ jobs: platforms: linux/amd64,linux/arm64 provenance: false builder: ${{ steps.buildx.outputs.name }} - push: ${{ github.repository == 'mastodon/mastodon' && github.event_name != 'pull_request' }} + push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha |