summaryrefslogtreecommitdiff
path: root/forgewrapper
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 20:38:37 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 20:38:37 +0300
commit25a9943d68a7dc31eeefeb17913dbe37d87e5302 (patch)
tree540166d548cafc56726a07225f2dbe649c8e2444 /forgewrapper
parenta4b5ffbaadb591066e2a97f8d450fb1d93e56a6e (diff)
downloadProject-Tick-25a9943d68a7dc31eeefeb17913dbe37d87e5302.tar.gz
Project-Tick-25a9943d68a7dc31eeefeb17913dbe37d87e5302.zip
NOISSUE Remove not needed CI workflows for GitHub Actions and reworked some workflows
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'forgewrapper')
-rw-r--r--forgewrapper/.github/workflows/build.yml28
-rw-r--r--forgewrapper/.github/workflows/publication.yml60
2 files changed, 0 insertions, 88 deletions
diff --git a/forgewrapper/.github/workflows/build.yml b/forgewrapper/.github/workflows/build.yml
deleted file mode 100644
index 971e891add..0000000000
--- a/forgewrapper/.github/workflows/build.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-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
deleted file mode 100644
index eeaed812c5..0000000000
--- a/forgewrapper/.github/workflows/publication.yml
+++ /dev/null
@@ -1,60 +0,0 @@
-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