Skip to content

Commit

Permalink
Always run docker steps (navidrome#3034)
Browse files Browse the repository at this point in the history
  • Loading branch information
deluan authored May 18, 2024
1 parent 0a763b9 commit 5d41165
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,18 +150,14 @@ jobs:
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v3
if: env.DOCKER_IMAGE != ''

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
if: env.DOCKER_IMAGE != ''

- uses: actions/checkout@v4
if: env.DOCKER_IMAGE != ''

- uses: actions/download-artifact@v4
if: env.DOCKER_IMAGE != ''
with:
name: binaries
path: dist
Expand All @@ -174,15 +170,13 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Login to GitHub Container Registry
if: env.DOCKER_IMAGE != ''
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata for Docker
if: env.DOCKER_IMAGE != ''
id: meta
uses: docker/metadata-action@v5
with:
Expand All @@ -197,7 +191,6 @@ jobs:
type=raw,value=develop,enable={{is_default_branch}}
- name: Build and Push
if: env.DOCKER_IMAGE != ''
uses: docker/build-push-action@v5
with:
context: .
Expand Down

0 comments on commit 5d41165

Please sign in to comment.