v0.0.7 - Updated for 1.21.1 #7
Workflow file for this run
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: "CivVoxelMap Release Gradle CI" | |
on: | |
release: | |
types: [published] | |
permissions: | |
contents: write | |
jobs: | |
release: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v3" | |
- name: "Set up JDK 21" | |
uses: "actions/setup-java@v3" | |
with: | |
java-version: 21 | |
distribution: "corretto" | |
cache: "gradle" | |
- name: "Compiling CivVoxelMap" | |
run: "./gradlew build" | |
- name: "Publishing CivVoxelMap" | |
run: | | |
gh release upload ${{ github.event.release.tag_name }} "LICENCE" --clobber | |
for file in $(find "dist/" -maxdepth 1 -type f -name "*.jar"); do | |
echo "Uploading $file" | |
gh release upload ${{ github.event.release.tag_name }} "$file" --clobber | |
done | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |