1 parent 540a844 commit b388fa0Copy full SHA for b388fa0
1 file changed
.github/workflows/sync-hf-spaces.yml
@@ -35,6 +35,7 @@ concurrency:
35
36
jobs:
37
detect:
38
+ if: ${{ github.server_url == 'https://github.com' }}
39
name: Resolve release target
40
runs-on: ubuntu-latest
41
outputs:
@@ -107,7 +108,7 @@ jobs:
107
108
sync:
109
name: Sync ${{ matrix.folder }}
110
needs: detect
- if: needs.detect.outputs.empty == 'false'
111
+ if: ${{ always() && github.server_url == 'https://github.com' && needs.detect.result == 'success' && needs.detect.outputs.empty == 'false' }}
112
113
114
strategy:
0 commit comments