summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2023-04-19 09:04:31 +0100
committerGitHub <noreply@github.com>2023-04-19 09:04:31 +0100
commitbeadc959269bd936d5d3628b6261871fd6ce6f1c (patch)
treea6c4e0ab599bf050f3665d09030e4b0496c60eb0 /.github
parentd5cc25531df84ebe3d5c929f5ac56ad415189661 (diff)
Upload tar before building deb (#898)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yaml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index cae516827..d7990188a 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -160,6 +160,12 @@ jobs:
# Let subsequent steps know where to find the compressed package
echo "PKG_PATH=${PKG_STAGING}/${PKG_NAME}" >> "$GITHUB_OUTPUT"
+ - name: "Artifact upload: tarball"
+ uses: actions/upload-artifact@master
+ with:
+ name: ${{ steps.package.outputs.PKG_NAME }}
+ path: ${{ steps.package.outputs.PKG_PATH }}
+
- name: Create Debian package
id: debian-package
shell: bash
@@ -183,11 +189,6 @@ jobs:
echo DPKG_NAME=${DPKG_NAME} >> $GITHUB_OUTPUT
echo DPKG_PATH=${DPKG_PATH} >> $GITHUB_OUTPUT
- - name: "Artifact upload: tarball"
- uses: actions/upload-artifact@master
- with:
- name: ${{ steps.package.outputs.PKG_NAME }}
- path: ${{ steps.package.outputs.PKG_PATH }}
- name: "Artifact upload: Debian package"
uses: actions/upload-artifact@master