Skip to content

Commit

Permalink
Update test-installed-cli workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zwhitfield3 committed Mar 19, 2024
1 parent 7428df0 commit c99727d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test-installed-cli.yml
Expand Up @@ -34,7 +34,11 @@ jobs:
run: curl https://cli-assets.heroku.com/install.sh | sh
shell: bash
- name: updating to heroku version ${{ inputs.version }}
run: heroku update --version=${{ inputs.version }}
id: current-cli-version
run: heroku update beta && version=$(heroku version | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+-beta\.[0-9]+')
- name: check version ${{ inputs.version }} exists
if: ${{ inputs.version }} == ${{ steps.current-cli-version.outputs.version }}
run: heroku version
shell: bash
- name: test release
run: ./scripts/postrelease/test_release
Expand Down

0 comments on commit c99727d

Please sign in to comment.