diff options
author | wlodekm <[email protected]> | 2024-11-15 11:24:20 +0200 |
---|---|---|
committer | wlodekm <[email protected]> | 2024-11-15 11:24:20 +0200 |
commit | 7825f77ae5446ca72c1445be3273852fd1f12f4a (patch) | |
tree | bc4ca8e763fbfc0893705663c95a8b0b3d339112 /.github/workflows/main.yml | |
parent | b12e0bfe5b7273573770bef64768050631d6ccc1 (diff) |
testsasa
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c55c6d1..6a86593 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,17 +45,18 @@ jobs: uses: actions/checkout@v3 - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: compressed-files # This is the same name you used in the upload-artifact step + path: build - name: List contents of downloaded artifacts (debugging step) - run: ls -R /home/runner/work/meower-cl/ # List contents of the downloaded artifact folder + run: ls -R . # List contents of the downloaded artifact folder - name: Create GitHub Release uses: softprops/action-gh-release@v1 with: - files: /home/runner/work/meower-cl/meower-cl/* # Now use the downloaded artifacts + files: build/* # Now use the downloaded artifacts tag_name: ${{ github.ref }} name: Release ${{ github.ref }} # Use name instead of release_name body: "Automated release for version ${{ github.ref }}" |