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 f9f1721 commit 0e259eaCopy full SHA for 0e259ea
.github/workflows/release.yaml
@@ -79,10 +79,15 @@ jobs:
79
- name: Tag Image
80
run: docker tag envbox ghcr.io/coder/envbox:${{ github.event.inputs.version }}
81
82
+ - name: Push Image
83
+ run: docker push ghcr.io/coder/envbox:${{ github.event.inputs.version }}
84
+ tag:
85
+ runs-on: ubuntu-22.04
86
+ needs: release
87
+ steps:
88
- name: Tag and Push Commit
89
run: |
90
git tag -a ${{ github.event.inputs.version }} -m ${{ github.event.inputs.version }}
91
git push --tags
92
- - name: Push Image
- run: docker push ghcr.io/coder/envbox:${{ github.event.inputs.version }}
93
+
0 commit comments