We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09fc64a commit 5be06dbCopy full SHA for 5be06db
.github/workflows/docker.yaml
@@ -39,15 +39,18 @@ jobs:
39
id: version
40
run: echo "::set-output name=version::$(jq -r .version package.json)"
41
42
- - name: Download artifact
43
- uses: dawidd6/action-download-artifact@v2
44
- id: download
+ - name: Download release artifacts
+ uses: robinraju/[email protected]
45
with:
46
- branch: v${{ steps.version.outputs.version }}
47
- workflow: ci.yaml
48
- workflow_conclusion: completed
49
- name: "release-packages"
50
- path: release-packages
+ repository: "coder/code-server"
+ latest: true
+ fileName: "*"
+ zipBall: true
+ out-file-path: "release-packages"
+ path: "release-packages"
51
+
52
+ - name: Unzip release artifacts
53
+ run: tar -xzf release-packages
54
55
- name: Run ./ci/steps/docker-buildx-push.sh
56
run: ./ci/steps/docker-buildx-push.sh
0 commit comments