From d3624bf3d1014f562d0cad761a94cb269ef87b80 Mon Sep 17 00:00:00 2001 From: ron1n Date: Thu, 15 Feb 2024 20:36:15 +0000 Subject: [PATCH] globstar all pngs instead of just gura --- .github/workflows/release_zip.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release_zip.yml b/.github/workflows/release_zip.yml index 01eac33..cab45b1 100644 --- a/.github/workflows/release_zip.yml +++ b/.github/workflows/release_zip.yml @@ -10,8 +10,8 @@ jobs: - name: Upload sticker packs as artifacts uses: actions/upload-artifact@v4 with: - name: gura - path: gura/ + name: stickers + path: **/*.png release-zips: name: Release zip packages runs-on: ubuntu-latest @@ -20,18 +20,18 @@ jobs: - name: Download sticker packs as artifacts uses: actions/download-artifact@v4 with: - name: gura + name: stickers - name: Zip this shit up again for some reason id: create-zip uses: thedoctor0/zip-release@master with: - filename: gura.zip + filename: stickers.zip - name: Create GitHub Release uses: softprops/action-gh-release@v1 with: token: ${{ secrets.GITHUB_TOKEN }} tag_name: 0.${{ github.run_number }} prerelease: true - files: ${{ steps.create-zip.outputs.upload_url }} + files: stickers.zip env: GITHUB_REPOSITORY: ron1n/crono-stickerpicker