diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:42:14 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:42:14 +0300 |
| commit | 9affe6b2ee9d4bd1c474d1d7c32ea2cc81ce5cee (patch) | |
| tree | 0dcfc70783bc623b016d05515aee309e0ca5c2d3 /forgewrapper/.github | |
| parent | 3d2121f5d6555744ce5aa502088fc2b34dc26d38 (diff) | |
| parent | 959f7668509a90d524438903ad8bda55d9e24e9d (diff) | |
| download | Project-Tick-9affe6b2ee9d4bd1c474d1d7c32ea2cc81ce5cee.tar.gz Project-Tick-9affe6b2ee9d4bd1c474d1d7c32ea2cc81ce5cee.zip | |
Add 'forgewrapper/' from commit '959f7668509a90d524438903ad8bda55d9e24e9d'
git-subtree-dir: forgewrapper
git-subtree-mainline: 3d2121f5d6555744ce5aa502088fc2b34dc26d38
git-subtree-split: 959f7668509a90d524438903ad8bda55d9e24e9d
Diffstat (limited to 'forgewrapper/.github')
| -rw-r--r-- | forgewrapper/.github/workflows/build.yml | 28 | ||||
| -rw-r--r-- | forgewrapper/.github/workflows/publication.yml | 60 |
2 files changed, 88 insertions, 0 deletions
diff --git a/forgewrapper/.github/workflows/build.yml b/forgewrapper/.github/workflows/build.yml new file mode 100644 index 0000000000..971e891add --- /dev/null +++ b/forgewrapper/.github/workflows/build.yml @@ -0,0 +1,28 @@ +name: Gradle Build + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK + uses: actions/setup-java@v4 + with: + distribution: "temurin" + java-version: "8.0.312" + architecture: x64 + - name: Build with Gradle + run: | + chmod +x ./gradlew + ./gradlew build -iS + - uses: actions/upload-artifact@v4 + with: + name: Package + path: build/libs diff --git a/forgewrapper/.github/workflows/publication.yml b/forgewrapper/.github/workflows/publication.yml new file mode 100644 index 0000000000..eeaed812c5 --- /dev/null +++ b/forgewrapper/.github/workflows/publication.yml @@ -0,0 +1,60 @@ +name: Publication + +on: + push: + tags: + - "*" + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK + uses: actions/setup-java@v4 + with: + distribution: "temurin" + java-version: "8.0.312" + architecture: x64 + - name: Build with Gradle + env: + IS_PUBLICATION: true + run: | + git clone -b maven https://github.com/ZekerZhayard/ForgeWrapper.git ./build/maven + rm -rf ./build/maven/.git/* + chmod +x ./gradlew + ./gradlew publish -iS + - uses: actions/upload-artifact@v4 + with: + name: Package + path: build/libs + - name: Get tag version + id: get_version + uses: olegtarasov/get-tag@v2.1 + - uses: actions/upload-artifact@v4 + with: + name: Package + path: build/libs + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.get_version.outputs.tag }} + release_name: ${{ steps.get_version.outputs.tag }} + body: "" + draft: false + prerelease: false + - name: Upload release binaries + uses: alexellis/upload-assets@0.2.2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + asset_paths: '["./build/libs/*"]' + - name: Upload to Maven + uses: JamesIves/github-pages-deploy-action@4.1.4 + with: + branch: maven + folder: build/maven |
