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 @@ -54,28 +54,28 @@ jobs:
54
54
go-version : ' 1.20'
55
55
56
56
- name : Compile
57
- if : inputs.command != 'release'
57
+ if : success() && inputs.command != 'release'
58
58
run : sb compile
59
59
60
60
- name : Copy our kickstart file over so it gets picked up
61
- if : inputs.command != 'release'
61
+ if : success() && inputs.command != 'release'
62
62
run : |
63
63
mkdir faDockerComposeFilePath
64
64
cp -r .github/kickstart faDockerComposeFilePath
65
65
cp .github/kickstart/kickstart.json faDockerComposeFilePath/kickstart/k2.json
66
66
cp .github/kickstart/kickstart.json .github/kickstart/k2.json
67
67
68
68
- name : Start FusionAuth
69
- if : inputs.command != 'release'
69
+ if : success() && inputs.command != 'release'
70
70
uses : fusionauth/fusionauth-github-action@v1
71
71
with :
72
72
FUSIONAUTH_APP_KICKSTART_FILENAME : k2.json
73
73
FUSIONAUTH_APP_KICKSTART_DIRECTORY_PATH : .github/kickstart
74
74
75
75
- name : Run tests
76
- if : inputs.command != 'release'
76
+ if : success() && inputs.command != 'release'
77
77
run : sleep 30 && sb test
78
78
79
79
- name : release to svn
80
- if : inputs.command == 'release'
80
+ if : success() && inputs.command == 'release'
81
81
run : sb release
You can’t perform that action at this time.
0 commit comments