🐛 fix #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 测试NeoForge | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- 'neoforge/**' | |
- 'origin/**' | |
permissions: | |
contents: write | |
jobs: | |
generate-matrix: | |
runs-on: windows-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate Matrix | |
id: set-matrix | |
shell: pwsh | |
run: | | |
.\matrix.ps1 -path "neoforge" | |
test: | |
runs-on: windows-latest | |
needs: generate-matrix | |
strategy: | |
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Chose JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: Read version.txt and save to variable | |
shell: pwsh | |
run: | | |
$mod_version = Get-Content version.txt | |
Write-Host "Version: $mod_version" | |
echo "MOD_VERSION=$mod_version" | Out-File -Append -Encoding utf8 -FilePath $env:GITHUB_ENV | |
- name: Init Files | |
shell: pwsh | |
run: | | |
./init.ps1 | |
- name: Build | |
run: | | |
cd ${{ matrix.config.mc-loader }}/${{ matrix.config.mc-loader }}-${{ matrix.config.mc-version }} | |
./gradlew clean build | |
cd ../.. |