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

Commit

Permalink
chore: rev the version number and cleanup the workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
tunderwood committed Nov 11, 2020
1 parent 4190ab1 commit a265e9c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew check build buildDashboard generateAggregatedReports -x integrationTest --continue
- name: test and publish coverage
- name: Test and publish coverage to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: ./gradlew coverallsJacoco
- name: Slack Notification on Master
- name: Slack notification when master build fails
if: ${{ failure() && github.ref == 'refs/heads/master'}}
uses: rtCamp/action-slack-notify@v2.1.0
env:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew check build buildDashboard generateAggregatedReports -x integrationTest --continue
- name: test and publish coverage
- name: Test and publish coverage to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: ./gradlew coverallsJacoco
Expand All @@ -30,19 +30,19 @@ jobs:
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY}}
run: ./gradlew bintrayUpload
- name: Upload binaries to release
- name: Upload binary to GitHub release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: cerberus-web/build/libs/cerberus.jar
tag: ${{ github.ref }}
- name: Upload binaries to release
- name: Upload checksum to GitHub release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: cerberus-web/build/libs/cerberus.jar.MD5
tag: ${{ github.ref }}
- name: Slack Notification on Master
- name: Slack notification when release fails
if: ${{ failure() }}
uses: rtCamp/action-slack-notify@v2.1.0
env:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# limitations under the License.
#

version=4.9.1
version=4.9.2
group=com.nike.cerberus
springBootVersion=2.3.4.RELEASE

0 comments on commit a265e9c

Please sign in to comment.