File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525jobs :
2626 changes :
2727 name : Detect changes
28+ if : ${{ !(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'build-publish-contracts')) }}
2829 runs-on : ubuntu-latest
2930 outputs :
3031 ton_changes : ${{ steps.changes.outputs.ton_changes }}
4748 name : Build Nix pkg and publish tarball
4849 needs : [ changes ]
4950 if : |
50- (needs.changes.outputs.ton_changes == 'true' || github.event_name == 'workflow_dispatch') &&
51- (github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'build-publish-contracts'))
51+ needs.changes.outputs.ton_changes == 'true' ||
52+ github.event_name == 'workflow_dispatch' ||
53+ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'build-publish-contracts'))
5254 runs-on : ubuntu-latest
5355 permissions :
5456 contents : write
You can’t perform that action at this time.
0 commit comments