[nolist] improve skip-queue-server-if-possible comment #123
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: Deploy Pre-Release to Polymart/Modrinth | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: polymart_deploy | |
if: | | |
!github.event.pull_request.head.repo.fork && | |
!contains(github.event.head_commit.message, '[nolist]') | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Change version to include build | |
run: | | |
export OLD_VERSION=`cat build.gradle.kts | grep "version " | awk -F'"' '{print $2}'` | |
export NEW_VERSION=$OLD_VERSION-b${{github.run_number}} | |
(cat build.gradle.kts | sed "s/$OLD_VERSION/$NEW_VERSION/") > temp.txt | |
mv temp.txt build.gradle.kts | |
echo Version number is now $(cat build.gradle.kts | grep "version " | awk -F'"' '{print $2}') - $NEW_VERSION | |
cat build.gradle.kts | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@937999e9cc2425eddc7fd62d1053baf041147db7 | |
with: | |
arguments: :free:shadowJar :premium:shadowJar | |
- name: Upload build files artifact | |
uses: actions/[email protected] | |
with: | |
# Artifact name | |
name: build-files | |
# A file, directory or wildcard pattern that describes what to upload | |
path: '*/build/*' | |
# The desired behavior if no files are found using the provided path. | |
if-no-files-found: error | |
retention-days: 2 | |
- name: Deploy to Polymart/Modrinth | |
env: | |
POLYMART_TOKEN: ${{ secrets.POLYMART_TOKEN }} | |
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | |
run: | | |
export VERSION=`cat build.gradle.kts | grep "version " | awk -F'"' '{print $2}'` | |
curl --no-progress-meter -A "AJUPDATER/1.0" -H "Authorization: $MODRINTH_TOKEN" -F data="{\"project_id\": \"dzacATni\", \"version_number\": \"$VERSION\", \"name\": \"Pre-release v$VERSION\", \"changelog\": \"Note: This is a (most likely) un-tested build. It is not guarenteed to work.<br><br>Change since previous build:<br><a href=\\\"${{ github.event.compare }}\\\" target=\\\"_blank\\\">${{ github.event.head_commit.message }}</a>\", \"file_parts\": [\"file\"], \"version_type\": \"beta\", \"loaders\": [\"bungeecord\", \"velocity\"], \"featured\": false, \"game_versions\": $(curl https://ajg0702.us/pl/updater/mc-versions.php), \"dependencies\": [], \"primary_file\": \"file\"}" -F "file=@free/build/libs/ajQueue-$VERSION.jar" "https://api.modrinth.com/v2/version" | |
curl -F "file=@free/build/libs/ajQueue-$VERSION.jar" -F api_key=$POLYMART_TOKEN -F resource_id="2535" -F version="$VERSION" -F title="Pre-release v$VERSION" -F beta=1 -F message=$'Note: This is a (most likely) un-tested build. It is not guarenteed to work!\n\nChange since previous build:\n[url=${{ github.event.compare }}"]${{ github.event.head_commit.message }}[/url]' "https://api.polymart.org/v1/postUpdate" | |
curl -F "file=@premium/build/libs/ajQueuePlus-$VERSION.jar" -F api_key=$POLYMART_TOKEN -F resource_id="2714" -F version="$VERSION" -F title="Pre-release v$VERSION" -F beta=1 -F message=$'Note: This is a (most likely) un-tested build. It is not guarenteed to work!\n\nChange since previous build:\n[url=${{ github.event.compare }}"]${{ github.event.head_commit.message }}[/url]' "https://api.polymart.org/v1/postUpdate" |