Skip to content

Commit 64c5a22

Browse files
author
Burak Yigit Kaya
committed
fix: Fix extra fs- and -beta surroundings
1 parent 55e68dd commit 64c5a22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ runs:
7777
name: Get Heroku release
7878
shell: bash
7979
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 }}' \
8181
-H 'Authorization: Bearer ${{ inputs.heroku_api_key }}' \
8282
-H 'Accept: application/vnd.heroku+json; version=3' | jq -r .release.id)
8383
echo ::set-output name=id::$(echo $release_id)
8484
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" \
8686
-H 'Authorization: Bearer ${{ inputs.heroku_api_key }}' \
8787
-H 'Accept: application/vnd.heroku+json; version=3')
8888
echo ::set-output name=release::$(echo $heroku_release)

0 commit comments

Comments
 (0)