-
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
0 parents
commit 451422b
Showing
15 changed files
with
1,348 additions
and
0 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,89 @@ | ||
name: Gradle Build and GitHub Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
name: Build and Release on GitHub | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: 17 | ||
distribution: 'temurin' | ||
|
||
- name: Build and Test | ||
run: ./gradlew licenseFormat build | ||
|
||
- name: Get Old Release Tag | ||
id: get_old_release | ||
run: | | ||
OLD_TAG=$(curl -s -H "Authorization: token ${{ secrets.DEPLOY_KEY }}" \ | ||
"https://api.github.com/repos/${{ github.repository }}/releases" | \ | ||
jq -r '.[0].tag_name') | ||
if [ -z "$OLD_TAG" ] || [ "$OLD_TAG" = "null" ]; then | ||
OLD_TAG="v1.0-SNAPSHOT" | ||
fi | ||
echo "Old release tag: $OLD_TAG" | ||
echo "::set-output name=old_tag::$OLD_TAG" | ||
env: | ||
RELEASE_TOKEN: ${{ secrets.DEPLOY_KEY }} | ||
GITHUB_REPOSITORY: ${{ github.repository }} | ||
|
||
- name: Get Old Release ID | ||
id: get_old_release_id | ||
run: | | ||
OLD_ID=$(curl -s -H "Authorization: token ${{ secrets.DEPLOY_KEY }}" \ | ||
"https://api.github.com/repos/${{ github.repository }}/releases" | \ | ||
jq -r '.[0].id') | ||
echo "Old release tag: $OLD_ID" | ||
echo "::set-output name=old_id::$OLD_ID" | ||
env: | ||
RELEASE_TOKEN: ${{ secrets.DEPLOY_KEY }} | ||
GITHUB_REPOSITORY: ${{ github.repository }} | ||
|
||
- name: Delete Old Release | ||
if: steps.get_old_release.outputs.old_tag != '' | ||
run: | | ||
curl -X DELETE \ | ||
-H "Authorization: token ${{ secrets.DEPLOY_KEY }}" \ | ||
"https://api.github.com/repos/${{ github.repository }}/releases/${{ steps.get_old_release_id.outputs.old_id }}" | ||
env: | ||
RELEASE_TOKEN: ${{ secrets.DEPLOY_KEY }} | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.DEPLOY_KEY }} | ||
with: | ||
tag_name: ${{ steps.get_old_release.outputs.old_tag }} | ||
release_name: Release ${{ steps.get_old_release.outputs.old_tag }} | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Upload Artifacts | ||
id: upload-artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: build-artifacts | ||
path: out/*.jar | ||
|
||
- name: Upload JARs as Release Assets | ||
id: upload-jars | ||
run: | | ||
for jar in out/*.jar; do | ||
curl -X POST \ | ||
-H "Authorization: token ${{ secrets.DEPLOY_KEY }}" \ | ||
-H "Content-Type: application/java-archive" \ | ||
--data-binary @$jar \ | ||
"https://uploads.github.com/repos/${{ github.repository }}/releases/${{ steps.create_release.outputs.id }}/assets?name=$(basename $jar)" | ||
done |
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,39 @@ | ||
.gradle | ||
build/ | ||
!gradle/wrapper/gradle-wrapper.jar | ||
!**/src/main/**/build/ | ||
!**/src/test/**/build/ | ||
|
||
### IntelliJ IDEA ### | ||
.idea/ | ||
*.iws | ||
*.iml | ||
*.ipr | ||
out/ | ||
!**/src/main/**/out/ | ||
!**/src/test/**/out/ | ||
|
||
### Eclipse ### | ||
.apt_generated | ||
.classpath | ||
.factorypath | ||
.project | ||
.settings | ||
.springBeans | ||
.sts4-cache | ||
bin/ | ||
!**/src/main/**/bin/ | ||
!**/src/test/**/bin/ | ||
|
||
### NetBeans ### | ||
/nbproject/private/ | ||
/nbbuild/ | ||
/dist/ | ||
/nbdist/ | ||
/.nb-gradle/ | ||
|
||
### VS Code ### | ||
.vscode/ | ||
|
||
### Mac OS ### | ||
.DS_Store |
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,16 @@ | ||
Copyright (c) 2023 - present | sanguine6660 <[email protected]> | ||
Copyright (c) 2023 - present | izanagicraft.com <[email protected]> | ||
Copyright (c) 2023 - present | izanagicraft.com team and contributors | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <https://www.gnu.org/licenses/>. |
Oops, something went wrong.