Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #13 from torkelrogstad/2024-04-08-ci
Browse files Browse the repository at this point in the history
ci: avoid pushing PR builds to release server
  • Loading branch information
CryptAxe authored Apr 9, 2024
2 parents 91dabfd + 5751ca5 commit 90f613d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ jobs:
name: Upload artifacts to releases.drivechain.info
runs-on: ubuntu-latest
needs: [build-linux, build-macos, build-windows]
if: github.repository_owner == 'LayerTwo-Labs'
# avoid uploading on PRs
if: github.event_name == 'push' && github.ref == 'refs/heads/sidechain' && github.repository_owner == 'LayerTwo-Labs'
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
Expand Down

0 comments on commit 90f613d

Please sign in to comment.