Skip to content

Commit 51d9fb4

Browse files
committed
Fix go docker deployment
1 parent 1511ef0 commit 51d9fb4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy-go-docker-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ jobs:
8888
echo "::set-output name=simple_version::$SIMPLE_VERSION"
8989
echo "::set-output name=version::$VERSION"
9090
echo "::set-output name=commit_sha::$COMMIT_SHA"
91-
echo "::set-output name=github_image_latest::docker.pkg.github.com/anime-skip/${{ inputs.githubImage }}:${{ inputs.tag }}"
91+
echo "::set-output name=github_image_latest::docker.pkg.github.com/anime-skip/${{ inputs.githubImage }}:${{ inputs.dockerTag }}"
9292
echo "::set-output name=github_image_archived::docker.pkg.github.com/anime-skip/${{ inputs.githubImage }}:${{ inputs.version }}"
9393
echo "::set-output name=heroku_image_deployed::registry.heroku.com/${{ inputs.herokuApp }}/web"
9494
95-
- name: Build :${{ inputs.tag }}
95+
- name: Build :${{ inputs.dockerTag }}
9696
run: |
9797
docker build . \
9898
--build-arg VERSION=${{ steps.details.outputs.version }} \
@@ -107,7 +107,7 @@ jobs:
107107
docker push ${{ steps.details.outputs.github_image_archived }}
108108
docker push ${{ steps.details.outputs.heroku_image_deployed }}
109109
110-
- name: Deploy :${{ inputs.tag }}
110+
- name: Deploy :${{ inputs.dockerTag }}
111111
run: |
112112
heroku container:release -a ${{ inputs.herokuApp }} web
113113

0 commit comments

Comments
 (0)