Skip to content

Commit 3a7e3fb

Browse files
committed
Fixed upload action and rename artifact
1 parent fe8babc commit 3a7e3fb

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
release:
1212
name: Release pushed tag
1313
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
node-version: [20]
1417

1518
steps:
1619
- name: Checkout
@@ -31,7 +34,11 @@ jobs:
3134
with:
3235
type: 'zip'
3336
directory: './dist'
34-
filename: xrpweb-v${{ github.run_number }}.zip
37+
filename: ../xrpweb-v${{ github.run_number }}.zip
38+
- name: Debug - List files
39+
run: |
40+
ls -la
41+
ls -la dist/
3542
- name: Create Release
3643
id: create_new_release
3744
uses: softprops/action-gh-release@v2.3.3
@@ -45,6 +52,6 @@ jobs:
4552
with:
4653
repo_token: ${{ secrets.GITHUB_TOKEN }}
4754
file: xrpweb-v${{ github.run_number }}.zip
48-
asset_name: xrpweb-v${{ github.run_number }}.zip
55+
asset_name: artifacts.zip
4956
tag: ${{ github.ref }}
5057
overwrite: true

0 commit comments

Comments
 (0)