We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f171b3 commit 3ed8913Copy full SHA for 3ed8913
.github/workflows/publish.yml
@@ -27,13 +27,19 @@ jobs:
27
run: bash ./.github/workflows/build.sh v0.1.0 # ${{ github.event.inputs.releaseTagName }}
28
- name: Upload pages artifact
29
uses: actions/upload-pages-artifact@v3
30
- id: upload
31
with:
32
path: dist/
33
34
deploy:
35
runs-on: ubuntu-22.04
36
needs: build
+ permissions:
37
+ pages: write
38
+ id-token: write
39
+ environment:
40
+ name: github-pages
41
+ url: ${{ steps.deployment.outputs.page_url }}
42
steps:
43
- name: Deploy pages
44
uses: actions/deploy-pages@v4
45
+ id: deployment
0 commit comments