-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kevin Harrington
committed
Jun 10, 2024
1 parent
338a231
commit edc0815
Showing
1 changed file
with
0 additions
and
38 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 |
---|---|---|
|
@@ -11,10 +11,6 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
distribution: 'zulu' | ||
- name: Build | ||
run: bash build-linux.sh | ||
- name: Upload math result for job Linux | ||
|
@@ -30,10 +26,6 @@ jobs: | |
uses: actions/checkout@v1 | ||
- uses: ilammy/msvc-dev-cmd@v1 | ||
- uses: microsoft/[email protected] | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
distribution: 'zulu' | ||
- name: Build | ||
run: bash build-windows.sh | ||
- name: Upload math result for job Windows | ||
|
@@ -47,10 +39,6 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
distribution: 'zulu' | ||
- name: Build | ||
run: bash build-mac.sh | ||
- name: Upload math result for job Mac | ||
|
@@ -66,12 +54,6 @@ jobs: | |
packages: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
distribution: 'zulu' | ||
- name: Validate Gradle wrapper | ||
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b | ||
- name: Set output | ||
id: vars | ||
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} | ||
|
@@ -97,27 +79,7 @@ jobs: | |
with: | ||
name: mac-lib | ||
path: src/main/resources/macosx-x86_64/ | ||
- name: Print Working Dir | ||
run: | | ||
ls -al . | ||
sudo apt install gnupg1 | ||
|
||
- name: Publish package | ||
run: bash publish.sh | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
VERSION_SEMVER: ${{ steps.vars.outputs.tag }} | ||
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | ||
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | ||
OSSRH_GPG_SECRET_KEY: ${{ secrets.OSSRH_GPG_SECRET_KEY }} | ||
OSSRH_GPG_SECRET_KEY_PASSWORD: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} | ||
OSSRH_GPG_SECRET_KEY_ID: ${{ secrets.OSSRH_GPG_SECRET_KEY_ID }} | ||
|
||
- name: Print Output Dir | ||
run: | | ||
ls -al | ||
ls -al build | ||
ls -al build/libs/ | ||
|
||
- name: Make gitHub release | ||
uses: actions/create-release@v1 | ||
|