Upload tar before building deb (#898)
This commit is contained in:
parent
d5cc25531d
commit
beadc95926
1 changed files with 6 additions and 5 deletions
11
.github/workflows/release.yaml
vendored
11
.github/workflows/release.yaml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue