File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,17 +52,17 @@ jobs:
52
52
if : matrix.java_version == '8'
53
53
run : ./mvnw -B -q -ff -ntp -DskipTests animal-sniffer:check
54
54
- name : Deploy snapshot
55
- if : github.event_name != 'pull_request' && matrix.java_version == '8' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT')
55
+ if : ${{ github.event_name != 'pull_request' && matrix.java_version == '8' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }}
56
56
env :
57
57
CI_DEPLOY_USERNAME : ${{ secrets.CI_DEPLOY_USERNAME }}
58
58
CI_DEPLOY_PASSWORD : ${{ secrets.CI_DEPLOY_PASSWORD }}
59
59
# MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
60
60
run : ./mvnw -B -q -ff -DskipTests -ntp source:jar deploy
61
61
- name : Generate code coverage
62
- if : github.event_name != 'pull_request' && matrix.java_version == '8'
62
+ if : ${{ github.event_name != 'pull_request' && matrix.java_version == '8' }}
63
63
run : ./mvnw -B -q -ff -ntp test
64
64
- name : Publish code coverage
65
- if : github.event_name != 'pull_request' && matrix.java_version == '8'
65
+ if : ${{ github.event_name != 'pull_request' && matrix.java_version == '8' }}
66
66
uses : codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed # v4.3.0
67
67
with :
68
68
token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments