Skip to content

Commit 4f33457

Browse files
committed
Try to fix python-yml
1 parent 431a580 commit 4f33457

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/python-app.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,21 @@ jobs:
2525
run: |
2626
python gh_issues.py -s days,user -f -a -n -t index.html
2727
- name: Upload index.html as artifact
28-
uses: actions/upload-artifact@v4
28+
# See https://github.com/actions/upload-pages-artifact
29+
uses: actions/upload-pages-artifact@v3
2930
with:
3031
name: github-pages
3132
path: ./index.html
33+
# See https://github.com/actions/deploy-pages
3234
deploy:
3335
runs-on: ubuntu-latest
3436
needs: build
3537
permissions:
3638
pages: write
3739
id-token: write
40+
environment:
41+
name: github-pages
42+
url: ${{ steps.deployment.outputs.page_url }}
3843
steps:
3944
- name: Deploy to GitHub Pages
4045
id: deployment

0 commit comments

Comments
 (0)