We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9705c8 commit f5d3791Copy full SHA for f5d3791
1 file changed
.github/workflows/release.yaml
@@ -56,9 +56,10 @@ jobs:
56
export GIT_TAG="$(basename ${{ github.ref }})"
57
scripts/release build assets clean
58
- name: Docker
59
+ if: ${{ env.docker_user != '' }}
60
env:
- DOCKER_USER: ${{ secrets.DOCKER_USER }}
61
+ DOCKER_USER: ${{ env.docker_user }}
62
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}
63
run: |
64
curl --disable --silent --show-error --location --max-time 30 "https://raw.githubusercontent.com/ViBiOh/scripts/main/bootstrap" | bash -s -- "-c" "docker_promote"
- scripts/docker_promote "${{ secrets.DOCKER_USER }}/$(make name)" "$(make version-date)" "$(basename ${{ github.ref }})"
65
+ scripts/docker_promote "${{ env.DOCKER_USER }}/$(make name)" "$(make version-date)" "$(basename ${{ github.ref }})"
0 commit comments