Skip to content

Commit

Permalink
🔨 Refactor for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
journey-ad committed Jun 26, 2024
1 parent 5134846 commit f63f955
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,35 +27,26 @@ jobs:
with:
images: journey0ad/bitmagnet-next-web
tags: |
type=raw,value=latest
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
type=ref,event=tag
-
name: Determine image tag
id: determine_tag
run: |
if [ "${{ github.ref_name }}" == "main" ]; then
echo "::set-output name=tags::${{ steps.meta.outputs.tags }}"
else
echo "::set-output name=tags::journey0ad/bitmagnet-next-web:${{ github.ref_name }}"
fi
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2

-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

-
name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.determine_tag.outputs.tags }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down

0 comments on commit f63f955

Please sign in to comment.