Skip to content

Commit

Permalink
Merge branch '1.20-fabric' into 1.20.4-fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
melontini committed Apr 13, 2024
2 parents 6a16f05 + 14a8062 commit 6222543
Showing 1 changed file with 48 additions and 12 deletions.
60 changes: 48 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,38 +19,74 @@ jobs:
runs-on: ubuntu-latest
if: |
!contains(github.event.head_commit.message, '[ci skip]')
outputs:
version_info: ${{ steps.get_version.outputs.version_info }}
version_plain: ${{ steps.get_version.outputs.version_plain }}
steps:
- name: checkout repository
uses: actions/[email protected]
- name: validate gradle wrapper
uses: gradle/[email protected]
- name: setup jdk 17
- name: setup jdk
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 17
cache: gradle
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: build and publish
- name: build
run: ./gradlew build
- name: get version #https://stackoverflow.com/questions/71089787/how-to-get-version-name-from-android-gradle-file-in-github-actions
id: get_version
run: |
echo "version_info=$(${{github.workspace}}/gradlew -q printVersionName)" >> $GITHUB_OUTPUT
echo "version_plain=$(${{github.workspace}}/gradlew -q printVersion)" >> $GITHUB_OUTPUT
- name: capture build artifacts
uses: actions/[email protected]
with:
name: Artifacts
path: build/libs/

packages:
needs: build
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/[email protected]
- name: setup jdk
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 17
cache: gradle
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./gradlew build publish
./gradlew publish
publish:
needs: build
runs-on: ubuntu-latest
if: ${{ github.event_name == 'workflow_dispatch' }}
steps:
- name: checkout repository
uses: actions/[email protected]
- uses: actions/[email protected]
with:
name: Artifacts
path: build/libs

- name: get version #https://stackoverflow.com/questions/71089787/how-to-get-version-name-from-android-gradle-file-in-github-actions
if: ${{ github.event_name == 'workflow_dispatch' }}
run: |
echo "VERSION_INFORMATION=$(${{github.workspace}}/gradlew -q printVersionName)" >> $GITHUB_ENV
echo "VERSION_PLAIN=$(${{github.workspace}}/gradlew -q printVersion)" >> $GITHUB_ENV
- name: publish release
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: Kir-Antipov/[email protected]
with:
version-type: ${{ inputs.version_type }}
changelog-file: CHANGELOG.md
name: ${{ env.VERSION_INFORMATION }}
version: ${{ env.VERSION_PLAIN }}
name: ${{ needs.build.outputs.version_info }}
version: ${{ needs.build.outputs.version_plain }}

game-versions: |
1.20.4
Expand All @@ -61,7 +97,7 @@ jobs:
java: |
17
github-tag: ${{ env.VERSION_PLAIN }}
github-tag: v${{ needs.build.outputs.version_plain }}
github-token: ${{ secrets.GITHUB_TOKEN }}
github-commitish: ${{ github.sha }}
github-prerelease: false
Expand Down

0 comments on commit 6222543

Please sign in to comment.