Skip to content

Commit 6d2a01b

Browse files
committed
fix
1 parent d8242e4 commit 6d2a01b

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,10 @@ jobs:
110110
gh-pages
111111
112112
publish-progress:
113+
name: Publish progress
113114
runs-on: ubuntu-24.04
114115
needs: [build-gba]
116+
# Only able to run from repo pull requests (by maintainers, or on the main branch via push)
115117
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }}
116118
permissions:
117119
contents: write
@@ -126,7 +128,9 @@ jobs:
126128
with:
127129
path: |
128130
gh-pages
129-
- run: ls -lah
131+
- run: |
132+
cd gh-pages
133+
ls -lah
130134
- name: Publish reports
131135
if: ${{ github.event_name == 'push' }}
132136
uses: EndBug/add-and-commit@v7

0 commit comments

Comments
 (0)