diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-08-11 17:19:21 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-08-11 17:19:21 -0400 |
commit | 1860b7682fbea2d6aa0b0b8355b29c208289c33a (patch) | |
tree | f326a5d8d2f26cc463ccb6ff270638ba15efef3a | |
parent | 5098fbf7bbd107a58106dac1426cf960dc58a1a0 (diff) |
Allow symbols branch on forks
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7ef4f389..1dfb5763e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@master - name: Checkout syms - if: ${{ github.event_name == 'push' && github.repository_owner == 'pret' }} + if: ${{ github.event_name == 'push' }} uses: actions/checkout@master with: path: symbols @@ -61,13 +61,13 @@ jobs: run: sh .github/calcrom/webhook.sh pokeemerald - name: Move symfiles - if: ${{ github.event_name == 'push' && github.repository_owner == 'pret' }} + if: ${{ github.event_name == 'push' }} run: | cp -v *.sym symbols/ echo "SYMBOLS_COMMIT_MSG=$( git log --format=%s ${GITHUB_SHA} )" >> $GITHUB_ENV - name: Update symfiles - if: ${{ github.event_name == 'push' && github.repository_owner == 'pret' }} + if: ${{ github.event_name == 'push' }} uses: EndBug/add-and-commit@v7 with: branch: symbols |