We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe8babc commit 3a7e3fbCopy full SHA for 3a7e3fb
1 file changed
.github/workflows/release.yml
@@ -11,6 +11,9 @@ jobs:
11
release:
12
name: Release pushed tag
13
runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ node-version: [20]
17
18
steps:
19
- name: Checkout
@@ -31,7 +34,11 @@ jobs:
31
34
with:
32
35
type: 'zip'
33
36
directory: './dist'
- 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/
42
- name: Create Release
43
id: create_new_release
44
uses: softprops/action-gh-release@v2.3.3
@@ -45,6 +52,6 @@ jobs:
45
52
46
53
repo_token: ${{ secrets.GITHUB_TOKEN }}
47
54
file: xrpweb-v${{ github.run_number }}.zip
48
- asset_name: xrpweb-v${{ github.run_number }}.zip
55
+ asset_name: artifacts.zip
49
56
tag: ${{ github.ref }}
50
57
overwrite: true
0 commit comments