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 d299883 commit 5d335fcCopy full SHA for 5d335fc
.github/workflows/main.yml
@@ -40,3 +40,20 @@ jobs:
40
uses: actions/upload-pages-artifact@v3
41
with:
42
path: ./output
43
+
44
+ deploy:
45
+ if: github.ref == 'refs/heads/master'
46
+ permissions:
47
+ contents: read
48
+ pages: write
49
+ id-token: write
50
51
+ runs-on: ubuntu-latest
52
+ needs: build
53
+ environment:
54
+ name: github-pages
55
+ url: ${{steps.deployment.outputs.page_url}}
56
+ steps:
57
+ - name: Deploy artifact
58
+ id: deployment
59
+ uses: actions/deploy-pages@v4
.travis.yml
deploy.sh
0 commit comments