We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 431a580 commit 4f33457Copy full SHA for 4f33457
1 file changed
.github/workflows/python-app.yml
@@ -25,16 +25,21 @@ jobs:
25
run: |
26
python gh_issues.py -s days,user -f -a -n -t index.html
27
- name: Upload index.html as artifact
28
- uses: actions/upload-artifact@v4
+ # See https://github.com/actions/upload-pages-artifact
29
+ uses: actions/upload-pages-artifact@v3
30
with:
31
name: github-pages
32
path: ./index.html
33
+ # See https://github.com/actions/deploy-pages
34
deploy:
35
runs-on: ubuntu-latest
36
needs: build
37
permissions:
38
pages: write
39
id-token: write
40
+ environment:
41
+ name: github-pages
42
+ url: ${{ steps.deployment.outputs.page_url }}
43
steps:
44
- name: Deploy to GitHub Pages
45
id: deployment
0 commit comments