From: Eugene Crosser Date: Tue, 24 May 2022 16:00:33 +0000 (+0200) Subject: actions: action-gh-release, not artifact upload X-Git-Tag: 0.92.d X-Git-Url: http://www.average.org/gitweb/?p=loctrkd.git;a=commitdiff_plain;h=5ee72062d86884f75c02bff969d50415d9bcd450 actions: action-gh-release, not artifact upload --- diff --git a/.github/workflows/build-dpkg.yml b/.github/workflows/build-dpkg.yml index 5fc01dc..b9bedcf 100644 --- a/.github/workflows/build-dpkg.yml +++ b/.github/workflows/build-dpkg.yml @@ -8,14 +8,16 @@ jobs: build-deb: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 - - uses: crosser/build-dpkg@HEAD + - name: Build Package + uses: crosser/build-dpkg@HEAD id: build with: args: --unsigned-source --unsigned-changes - - uses: actions/upload-artifact@v3 + - name: Upload Release + uses: softprops/action-gh-release@v1 with: - name: ${{ steps.build.outputs.filename }} - path: ${{ github.workspace }}/${{ steps.build.outputs.filename }} + files: ${{ github.workspace }}/${{ steps.build.outputs.filename }}