From bde44c67c3e8cdd7406ca537a5f37f1e173d81eb Mon Sep 17 00:00:00 2001 From: Nicola Squartini Date: Thu, 29 Aug 2024 10:11:32 +0200 Subject: [PATCH] ci: fix publish-release action --- .github/workflows/publish-release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 2740355..dbd30cb 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -38,8 +38,10 @@ jobs: LICENSE_KEY: ${{ secrets.GEOIP_LICENSE_KEY }} - name: Generate ZIP files for ${{ matrix.target.os }} ${{ matrix.target.arch }} run: ./scripts/create-zips.sh ${{ matrix.target.os }} ${{ matrix.target.arch }} + shell: bash - uses: actions/upload-artifact@v4 with: + name: ${{ matrix.target.os }}-${{ matrix.target.arch }} path: "*.zip" publish: needs: build @@ -50,7 +52,7 @@ jobs: - uses: ncipollo/release-action@v1 with: allowUpdates: true - artifacts: "*.zip" + artifacts: "*/*.zip" omitBodyDuringUpdate: true omitNameDuringUpdate: true token: ${{ secrets.GITHUB_TOKEN }}