Skip to content

Commit

Permalink
ci: prerelease
Browse files Browse the repository at this point in the history
  • Loading branch information
Apehum committed Apr 9, 2024
1 parent 456ef83 commit 8ef1dbb
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 7 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/prerelease-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Publish

on:
push:
branches:
- v1.1

jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: write
packages: write

steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: |
8
16
17
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build

- name: Publish to GitHub
uses: Apehum/mc-publish@v1.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-generate-changelog: true
github-prerelease: true
changelog-file: changelog.md
22 changes: 15 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
distribution: temurin
java-version: |
8
16
17
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
Expand All @@ -33,7 +34,6 @@ jobs:
with:
modrinth-id: g2HFPeCl
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}

changelog-file: changelog.md

loaders: |
Expand All @@ -44,13 +44,21 @@ jobs:
velocity
bungeecord
game-versions: |
1.16.5
1.17.1
1.18.2
1.19.2
1.19.3
1.19.4
1.20
1.20.1
1.20.2
1.20.3
1.20.4
- name: Publish to GitHub
uses: Apehum/mc-publish@v1.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

github-generate-changelog: false
changelog-file: changelog.md

0 comments on commit 8ef1dbb

Please sign in to comment.