about summary refs log tree commit diff
path: root/.github/workflows/build-image.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build-image.yml')
-rw-r--r--.github/workflows/build-image.yml17
1 files changed, 7 insertions, 10 deletions
diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml
index 6c12bd073..3a880fabf 100644
--- a/.github/workflows/build-image.yml
+++ b/.github/workflows/build-image.yml
@@ -4,14 +4,13 @@ on:
   push:
     branches:
       - 'main'
-    tags:
-      - '*'
   pull_request:
     paths:
       - .github/workflows/build-image.yml
       - Dockerfile
 permissions:
   contents: read
+  packages: write
 
 jobs:
   build-image:
@@ -22,20 +21,18 @@ jobs:
       - uses: docker/setup-buildx-action@v2
       - uses: docker/login-action@v2
         with:
-          username: ${{ secrets.DOCKERHUB_USERNAME }}
-          password: ${{ secrets.DOCKERHUB_TOKEN }}
+          registry: ghcr.io
+          username: ${{ github.repository_owner }}
+          password: ${{ secrets.GITHUB_TOKEN }}
         if: github.event_name != 'pull_request'
       - uses: docker/metadata-action@v4
         id: meta
         with:
-          images: tootsuite/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@v3
         with:
           context: .