Download rpm artifacts

This commit is contained in:
Asher 2024-02-08 11:32:19 -09:00
parent 5d59312755
commit 72a1ca8b3b
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
1 changed files with 9 additions and 1 deletions

View File

@ -183,7 +183,7 @@ jobs:
TAG="${{ github.event.inputs.version || github.ref_name }}"
echo "VERSION=${TAG#v}" >> $GITHUB_ENV
- name: Download release artifacts
- name: Download deb artifacts
uses: robinraju/release-downloader@v1.9
with:
repository: "coder/code-server"
@ -191,6 +191,14 @@ jobs:
fileName: "*.deb"
out-file-path: "release-packages"
- name: Download rpm artifacts
uses: robinraju/release-downloader@v1.9
with:
repository: "coder/code-server"
tag: v${{ env.VERSION }}
fileName: "*.rpm"
out-file-path: "release-packages"
- name: Publish to Docker
run: ./ci/steps/docker-buildx-push.sh
env: