Mark 1.21.8 as supported #63
This file contains hidden or 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: ProtocolStringReplacer Snapshot Builder | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - name: Make gradlew executable | |
| run: chmod +x ./gradlew | |
| - name: Setup Gradle | |
| uses: gradle/gradle-build-action@v3 | |
| with: | |
| gradle-version: 8.6 | |
| - name: Execute Gradle build | |
| run: ./gradlew createJars | |
| - run: mkdir ProtocolStringReplacer && cp build/allJars/*.jar ProtocolStringReplacer | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ProtocolStringReplacer-Snapshot | |
| path: ProtocolStringReplacer |