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 10be172 commit 5178993Copy full SHA for 5178993
.github/workflows/release.yaml
@@ -37,8 +37,10 @@ jobs:
37
GITHUB_TOKEN: ${{ secrets.GH_PUBLISH_SECRETS }}
38
- name: Upload via oras
39
run: |
40
- oras push docker.io/linuxsuren/hd:${{ steps.vars.outputs.tag }} release
41
- oras push ${{ env.REGISTRY }}/linuxsuren/hd:${{ steps.vars.outputs.tag }} release
+ export TAG=${{ steps.vars.outputs.tag }}
+ TAG=${TAG#v}
42
+ oras push docker.io/linuxsuren/hd:$TAG release
43
+ oras push ${{ env.REGISTRY }}/linuxsuren/hd:$TAG release
44
45
image:
46
runs-on: ubuntu-20.04
0 commit comments