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.
actions/upload-pages-artifact
1 parent 9951d5d commit 9a7959aCopy full SHA for 9a7959a
.github/workflows/release.yml
@@ -1,7 +1,7 @@
1
name: Release
2
on:
3
release:
4
- types: [edited]
+ types: [released, edited]
5
workflow_dispatch:
6
inputs:
7
TAG_NAME:
action.yml
@@ -92,6 +92,7 @@ runs:
92
run: $PACKAGE_MANAGER run build
93
94
- name: Upload Pages Artifact
95
- uses: actions/upload-pages-artifact@v3
+ # Must use v2 to avoid requiring `actions/deploy-pages@v4` or newer
96
+ uses: actions/upload-pages-artifact@v2
97
with:
- path: "${{ inputs.path }}/dist"
98
+ path: "${{ inputs.path }}/dist/"
0 commit comments