Skip to content

Commit

Permalink
ci: update CI for github env
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuef committed Oct 19, 2023
1 parent fc5f32f commit e2ebe04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/version_bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
token: ${{ secrets.VERSION_BUMP_COMMIT_PAT }}
- name: Get the SHA of the last release commit
id: get-sha
run: echo "::set-output name=sha::$(git log --grep='chore(release):' -n 1 --pretty=format:"%H")"
run: echo "sha=$(git log --grep='chore(release):' -n 1 --pretty=format:"%H")" >> $GITHUB_ENV
- name: Wait for release workflow to complete
uses: fountainhead/[email protected]
id: wait-for-release
id: wait-for-releasegit
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ steps.get-sha.outputs.sha }}
ref: ${{ env.sha }}
checkName: release
timeoutSeconds: 3600 # 1 hour

Expand Down

0 comments on commit e2ebe04

Please sign in to comment.