We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f33457 commit 4a6d63fCopy full SHA for 4a6d63f
1 file changed
.github/workflows/python-app.yml
@@ -23,13 +23,14 @@ jobs:
23
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
24
- name: Create a new GitHub issues report
25
run: |
26
- python gh_issues.py -s days,user -f -a -n -t index.html
+ mkdir build_outputs_folder |
27
+ python gh_issues.py -s days,user -f -a -n -t build_outputs_folder/index.html
28
- name: Upload index.html as artifact
29
# See https://github.com/actions/upload-pages-artifact
30
uses: actions/upload-pages-artifact@v3
31
with:
32
name: github-pages
- path: ./index.html
33
+ path: build_outputs_folder/
34
# See https://github.com/actions/deploy-pages
35
deploy:
36
runs-on: ubuntu-latest
0 commit comments