-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from shipkit/sf
Enabled GH Action
- Loading branch information
Showing
5 changed files
with
66 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# | ||
# CI build that assembles artifacts and runs tests. | ||
# If validation is successful this workflow releases from the main dev branch. | ||
# | ||
# - skipping CI: add [skip ci] to the commit message | ||
# - skipping release: add [skip release] to the commit message | ||
# | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: ['master'] | ||
tags-ignore: [v*] # release tags are autogenerated after a successful CI, no need to run CI against them | ||
pull_request: | ||
branches: ['**'] | ||
|
||
jobs: | ||
|
||
# | ||
# Main build job | ||
# | ||
build: | ||
runs-on: ubuntu-latest | ||
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')" | ||
|
||
steps: | ||
|
||
- name: 1. Check out code | ||
uses: actions/checkout@v2 # https://github.com/actions/checkout | ||
with: | ||
fetch-depth: '0' # https://github.com/shipkit/shipkit-changelog#fetch-depth-on-ci | ||
|
||
- name: 2. Set up Java | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
|
||
- name: 3. Perform build | ||
run: ./gradlew build publishToMavenLocal --scan | ||
|
||
- name: 4. Perform release | ||
# Release job, only for pushes to the main development branch | ||
if: github.event_name == 'push' | ||
&& github.ref == 'refs/heads/master' | ||
&& github.repository == 'shipkit/shipkit-demo' | ||
&& !contains(toJSON(github.event.commits.*.message), '[skip release]') | ||
|
||
run: ./gradlew publishToSonatype closeAndReleaseStagingRepository --scan | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
SONATYPE_USER: ${{secrets.SONATYPE_USER}} | ||
SONATYPE_PWD: ${{secrets.SONATYPE_PWD}} | ||
PGP_KEY: ${{secrets.PGP_KEY}} | ||
PGP_PWD: ${{secrets.PGP_PWD}} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters