We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8242e4 commit 6d2a01bCopy full SHA for 6d2a01b
1 file changed
.github/workflows/build.yml
@@ -110,8 +110,10 @@ jobs:
110
gh-pages
111
112
publish-progress:
113
+ name: Publish progress
114
runs-on: ubuntu-24.04
115
needs: [build-gba]
116
+ # Only able to run from repo pull requests (by maintainers, or on the main branch via push)
117
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }}
118
permissions:
119
contents: write
@@ -126,7 +128,9 @@ jobs:
126
128
with:
127
129
path: |
130
- - run: ls -lah
131
+ - run: |
132
+ cd gh-pages
133
+ ls -lah
134
- name: Publish reports
135
if: ${{ github.event_name == 'push' }}
136
uses: EndBug/add-and-commit@v7
0 commit comments