File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -77,12 +77,12 @@ runs:
77
77
name : Get Heroku release
78
78
shell : bash
79
79
run : |
80
- release_id=$(curl -fsS 'https://api.heroku.com/apps/fs- ${{ inputs.heroku_app_name }}-beta /builds/${{ steps.create_build.outputs.id }}' \
80
+ release_id=$(curl -fsS 'https://api.heroku.com/apps/${{ inputs.heroku_app_name }}/builds/${{ steps.create_build.outputs.id }}' \
81
81
-H 'Authorization: Bearer ${{ inputs.heroku_api_key }}' \
82
82
-H 'Accept: application/vnd.heroku+json; version=3' | jq -r .release.id)
83
83
echo ::set-output name=id::$(echo $release_id)
84
84
85
- heroku_release=$(curl -fsS "https://api.heroku.com/apps/fs- ${{ inputs.heroku_app_name }}-beta /releases/$release_id" \
85
+ heroku_release=$(curl -fsS "https://api.heroku.com/apps/${{ inputs.heroku_app_name }}/releases/$release_id" \
86
86
-H 'Authorization: Bearer ${{ inputs.heroku_api_key }}' \
87
87
-H 'Accept: application/vnd.heroku+json; version=3')
88
88
echo ::set-output name=release::$(echo $heroku_release)
You can’t perform that action at this time.
0 commit comments