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 12c0ddb commit 8d1c230Copy full SHA for 8d1c230
1 file changed
.github/workflows/send-beta-build.yml
@@ -16,7 +16,7 @@ concurrency:
16
cancel-in-progress: false
17
18
permissions:
19
- contents: read # For artifact access
+ contents: read
20
21
jobs:
22
build-and-dispatch:
@@ -43,16 +43,14 @@ jobs:
43
run: npm run build
44
45
- name: Zip build artifacts
46
- run: |
47
- cd Build/dist
48
- zip -r ../../../htmlplayer-build.zip .
+ run: zip -r htmlplayer-build.zip Build/dist
49
50
- name: Upload artifact
51
uses: actions/upload-artifact@v4
52
with:
53
name: htmlplayer-build
54
path: htmlplayer-build.zip
55
- retention-days: 1 # Short retention since it's for deploy
+ retention-days: 1
56
57
- name: Get artifact download URL
58
id: get-artifact
0 commit comments