We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 40aa064 + dba68ff commit 3a5b40fCopy full SHA for 3a5b40f
.github/workflows/build.yml
@@ -156,7 +156,8 @@ jobs:
156
name: Upload artifacts to releases.drivechain.info
157
runs-on: ubuntu-latest
158
needs: [build-linux, build-macos]
159
- if: github.repository_owner == 'LayerTwo-Labs'
+ # avoid uploading on PRs!
160
+ if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository_owner == 'LayerTwo-Labs'
161
steps:
162
- name: Download artifacts
163
uses: actions/download-artifact@v4
0 commit comments