File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 28
28
cargo build --release
29
29
30
30
- name : Upload default artifacts
31
- # if: github.event_name != 'pull_request'
31
+ if : github.event_name != 'pull_request'
32
32
uses : actions/upload-artifact@v3
33
33
with :
34
34
name : native-library-${{ matrix.os }}
38
38
strathweb-phi-engine/target/release/*.dll
39
39
40
40
- name : Upload bindings
41
- if : matrix.os == 'ubuntu-latest'
41
+ if : matrix.os == 'ubuntu-latest' && github.event_name != 'pull_request'
42
42
uses : actions/upload-artifact@v3
43
43
with :
44
44
name : language-bindings
@@ -59,18 +59,18 @@ jobs:
59
59
- name : Build Swift Package
60
60
run : ./build-swift.sh
61
61
- name : Clean temporary build files from Swift Package
62
- # if: github.event_name != 'pull_request'
62
+ if : github.event_name != 'pull_request'
63
63
run : rm -rf packages/swift/Strathweb.Phi.Engine/.build
64
64
- name : Upload artifact
65
- # if: github.event_name != 'pull_request'
65
+ if : github.event_name != 'pull_request'
66
66
uses : actions/upload-artifact@v3
67
67
with :
68
68
name : Strathweb.Phi.Engine-SwiftPackage
69
69
path : packages/swift/Strathweb.Phi.Engine
70
70
71
71
build-nuget :
72
72
runs-on : ubuntu-latest
73
- # if: github.event_name != 'pull_request'
73
+ if : github.event_name != 'pull_request'
74
74
needs : [build]
75
75
76
76
steps :
You can’t perform that action at this time.
0 commit comments