Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
spbsoluble committed Dec 7, 2023
1 parent b90cde3 commit f219d76
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/keyfactor-starter-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ jobs:
echo "Updating version in version.go"
echo "UPDATE_VERSION=true" >> $GITHUB_ENV
echo "update_version=true" >> $GITHUB_ENV
echo "update_version=true" | tee -a "$GITHUB_STEP_SUMMARY"
else
echo "Versions match, no update needed"
echo "UPDATE_VERSION=false" >> $GITHUB_ENV
Expand All @@ -175,6 +176,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Output update_version
run: |
echo "update_version=${{ needs.check-package-version.outputs.update_version }}"
echo "UPDATE_VERSION=${{ needs.check-package-version.outputs.update_version }}"
- name: Update Package Version
id: update-version
if: ${{ needs.check-package-version.outputs.update_version == 'true' }}
Expand Down

0 comments on commit f219d76

Please sign in to comment.