Skip to content

Commit

Permalink
add upload things
Browse files Browse the repository at this point in the history
  • Loading branch information
screret committed Oct 20, 2023
1 parent 12a5d4c commit fffacac
Show file tree
Hide file tree
Showing 3 changed files with 144 additions and 0 deletions.
138 changes: 138 additions & 0 deletions .github/workflows/auto_publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
name: Auto Publish & Release

on:
workflow_dispatch:
inputs:
releaseType:
description: 'release type'
required: true
type: choice
default: 'alpha'
options:
- 'release'
- 'beta'
- 'alpha'
publishMaven:
description: 'whether publish to the maven'
required: true
type: boolean
default: false
publishCurseForgeAndModrinth:
description: 'whether publish to the curseforge and modrinth'
required: true
type: boolean
default: true

jobs:
build:
runs-on: ubuntu-latest
env:
MAVEN_PASS: ${{ secrets.MAVEN_PASS }}
MAVEN_USER: ${{ secrets.MAVEN_USER }}
steps:
- uses: actions/checkout@v3
with:
submodules: true

- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'

- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build
uses: gradle/[email protected]
with:
arguments: build

- if: ${{ inputs.publishMaven }}
name: Publish to Maven
uses: gradle/[email protected]
with:
arguments: publish

- if: ${{ inputs.publishCurseForgeAndModrinth }}
name: Get Version
id: var
run: |
MESSAGE=$(ls fabric/build/libs/* | grep sources.jar -v | grep shadow.jar -v | awk -F 'gtceu-fabric-|.jar' '{print $2}')
echo fabric_version=$MESSAGE >> $GITHUB_OUTPUT
MESSAGE=$(ls forge/build/libs/* | grep sources.jar -v | grep shadow.jar -v | awk -F 'gtceu-forge-|.jar' '{print $2}')
echo forge_version=$MESSAGE >> $GITHUB_OUTPUT
- if: ${{ inputs.publishCurseForgeAndModrinth }}
name: mc-publish-fabric
uses: Kir-Antipov/[email protected]
with:
# Only include this section if you wish to publish
# your assets on Modrinth.
modrinth-id: 4VJrCEMZ
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}

# Only include this section if you wish to publish
# your assets on CurseForge.
curseforge-id: 922713
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}

files: |
fabric/build/libs/!(*-@(dev|sources|javadoc|dev-shadow)).jar
fabric/build/libs/*-@(dev|sources|javadoc|dev-shadow).jar
name: GregTechCEu ${{ steps.var.outputs.fabric_version }}-fabric
version: mc${{ steps.var.outputs.fabric_version }}-fabric
version-type: ${{ inputs.releaseType }}
changelog-file: CHANGELOG.*

loaders: |
fabric
game-versions: |
${{ github.ref_name }}
dependencies: |
gtceu{modrinth:7tG215v7}{curseforge:890405}
game-version-filter: none
java: |
17
retry-attempts: 2
retry-delay: 10000
fail-mode: fail

- if: ${{ inputs.publishCurseForgeAndModrinth }}
name: mc-publish-forge
uses: Kir-Antipov/[email protected]
with:
# Only include this section if you wish to publish
# your assets on Modrinth.
modrinth-id: 4VJrCEMZ
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}

# Only include this section if you wish to publish
# your assets on CurseForge.
curseforge-id: 922713
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}

files: |
forge/build/libs/!(*-@(dev|sources|javadoc|dev-shadow)).jar
forge/build/libs/*-@(dev|sources|javadoc|dev-shadow).jar
name: GregTechCEu ${{ steps.var.outputs.forge_version }}-forge
version: mc${{ steps.var.outputs.forge_version }}-forge
version-type: ${{ inputs.releaseType }}
changelog-file: CHANGELOG.*

loaders: |
forge
game-versions: |
${{ github.ref_name }}
dependencies: |
gtceu{modrinth:7tG215v7}{curseforge:890405}
game-version-filter: none
java: |
17
retry-attempts: 2
retry-delay: 10000
fail-mode: fail
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## changelog

---

0.0.2:
- initial release
Binary file added common/src/main/resources/logo_lowres.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fffacac

Please sign in to comment.