Skip to content

Commit 72a1ca8

Browse files
committed
Download rpm artifacts
1 parent 5d59312 commit 72a1ca8

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/publish.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,14 +183,22 @@ jobs:
183183
TAG="${{ github.event.inputs.version || github.ref_name }}"
184184
echo "VERSION=${TAG#v}" >> $GITHUB_ENV
185185
186-
- name: Download release artifacts
186+
- name: Download deb artifacts
187187
uses: robinraju/release-downloader@v1.9
188188
with:
189189
repository: "coder/code-server"
190190
tag: v${{ env.VERSION }}
191191
fileName: "*.deb"
192192
out-file-path: "release-packages"
193193

194+
- name: Download rpm artifacts
195+
uses: robinraju/release-downloader@v1.9
196+
with:
197+
repository: "coder/code-server"
198+
tag: v${{ env.VERSION }}
199+
fileName: "*.rpm"
200+
out-file-path: "release-packages"
201+
194202
- name: Publish to Docker
195203
run: ./ci/steps/docker-buildx-push.sh
196204
env:

0 commit comments

Comments
 (0)