We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1c5047 commit eb81675Copy full SHA for eb81675
.github/workflows/publish-runtime.yml
@@ -236,12 +236,10 @@ jobs:
236
username: ${{ secrets.DOCKERHUB_USERNAME }}
237
password: ${{ secrets.DOCKERHUB_TOKEN }}
238
- name: Publish runtime docker image
239
- env:
240
- DOCKER_IMAGE: purestake/moonbeam
241
- DOCKER_TAG: ${{ github.event.inputs.to }}
242
- GITHUB_TAG: ${{ github.event.inputs.to }}
243
run: |
244
- COMMIT=`git rev-list -n 1 '${GITHUB_TAG}'`
+ DOCKER_IMAGE=purestake/moonbeam
+ DOCKER_TAG="${{ github.event.inputs.to }}"
+ COMMIT=`git rev-list -n 1 '${{ github.event.inputs.to }}'`
245
SHA=sha-${COMMIT::8}
246
echo tagging "${DOCKER_IMAGE}:sha-${SHA}"
247
docker tag "${DOCKER_IMAGE}:sha-${SHA}" "${DOCKER_IMAGE}:${DOCKER_TAG}"
0 commit comments