mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
fix: do not try to push to ghcr.io without proper permissions (#3395)
This commit is contained in:
parent
16d1314a68
commit
943b456d3f
1 changed files with 12 additions and 12 deletions
24
.github/workflows/pipeline.yml
vendored
24
.github/workflows/pipeline.yml
vendored
|
@ -154,16 +154,26 @@ jobs:
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
check-push-enabled:
|
||||||
|
name: Check Docker configuration
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
is_enabled: ${{ steps.check.outputs.is_enabled }}
|
||||||
|
steps:
|
||||||
|
- name: Check if Docker push is configured
|
||||||
|
id: check
|
||||||
|
run: echo "is_enabled=${{ secrets.DOCKER_HUB_USERNAME != '' }}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
needs: [js, go, go-lint, i18n-lint, git-version]
|
needs: [js, go, go-lint, i18n-lint, git-version, check-push-enabled]
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
platform: [ linux/amd64, linux/arm64, linux/arm/v5, linux/arm/v6, linux/arm/v7, linux/386, darwin/amd64, darwin/arm64, windows/amd64, windows/386 ]
|
platform: [ linux/amd64, linux/arm64, linux/arm/v5, linux/arm/v6, linux/arm/v7, linux/386, darwin/amd64, darwin/arm64, windows/amd64, windows/386 ]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
IS_LINUX: ${{ startsWith(matrix.platform, 'linux/') && 'true' || 'false' }}
|
IS_LINUX: ${{ startsWith(matrix.platform, 'linux/') && 'true' || 'false' }}
|
||||||
IS_DOCKER_PUSH_CONFIGURED: ${{ vars.DOCKER_HUB_REPO != '' && 'true' || 'false' }}
|
IS_DOCKER_PUSH_CONFIGURED: ${{ needs.check-push-enabled.outputs.is_enabled == 'true' }}
|
||||||
DOCKER_BUILD_SUMMARY: false
|
DOCKER_BUILD_SUMMARY: false
|
||||||
GIT_SHA: ${{ needs.git-version.outputs.git_sha }}
|
GIT_SHA: ${{ needs.git-version.outputs.git_sha }}
|
||||||
GIT_TAG: ${{ needs.git-version.outputs.git_tag }}
|
GIT_TAG: ${{ needs.git-version.outputs.git_tag }}
|
||||||
|
@ -240,16 +250,6 @@ jobs:
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
check-push-enabled:
|
|
||||||
name: Check Docker configuration
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
outputs:
|
|
||||||
is_enabled: ${{ steps.check.outputs.is_enabled }}
|
|
||||||
steps:
|
|
||||||
- name: Check if Docker push is configured
|
|
||||||
id: check
|
|
||||||
run: echo "is_enabled=${{ secrets.DOCKER_HUB_USERNAME != '' }}" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
push-manifest:
|
push-manifest:
|
||||||
name: Push Docker manifest
|
name: Push Docker manifest
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue