chore: Remove redundant container image declaration
Container & Helm chart / Semantic Release (Dry-run) (push) Successful in 40s Details
Container & Helm chart / Container image (docker.io) (push) Failing after 12s Details

This commit is contained in:
Danny Bessems 2024-02-20 00:22:08 +01:00
parent e7966b6045
commit d4e1db69b6
1 changed files with 6 additions and 6 deletions

View File

@ -28,16 +28,16 @@ jobs:
--plugins @semantic-release/commit-analyzer,@semantic-release/exec \
--analyzeCommits @semantic-release/commit-analyzer \
--verifyRelease @semantic-release/exec \
--verifyReleaseCmd 'echo "$${nextRelease.version}" > .version'
--verifyReleaseCmd 'echo "version=$${nextRelease.version}" >> $GITHUB_OUTPUT'
# --verifyReleaseCmd 'echo "$${nextRelease.version}" > .version'
env:
GIT_CREDENTIALS: djpbessems:${{ secrets.GIT_APIKEY }}
- name: Set output variable
id: sem_rel
run: |
echo "version=$(cat .version)" >> $GITHUB_OUTPUT
# - name: Set output variable
# id: sem_rel
# run: |
# echo "version=$(cat .version)" >> $GITHUB_OUTPUT
Container image (docker.io):
container: gcr.io/kaniko-project/executor:debug
runs-on: ubuntu-latest
steps:
- uses: docker/login-action@v1