From 72a1ca8b3bdc158ca0e9e76184c1d0f982a01b7d Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 8 Feb 2024 11:32:19 -0900 Subject: [PATCH] Download rpm artifacts --- .github/workflows/publish.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 7c837d499cea..e38a26f30f32 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -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: