Add extra failsafes to ConfigColorElement #175
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
# Release Workflow | |
name: Release Snapshot | |
on: | |
push: | |
branches: | |
- develop-v0 | |
concurrency: | |
group: ${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
**/loom-cache | |
**/prebundled-jars | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Chmod Gradle | |
run: chmod +x ./gradlew | |
- name: Get version number | |
run: echo '::set-output name=VERSION_NUMBER::$(( ${{ secrets.BUILD_OFFSET }} + ${{ github.run_number }}))' | |
id: version | |
- name: Publish | |
run: ./gradlew publishAllPublicationsToSnapshotsRepository -Pmod_minor_version=${{ steps.version.outputs.VERSION_NUMBER }} -PsnapshotsUsername=${{ secrets.MAVEN_NAME }} -PsnapshotsPassword=${{ secrets.MAVEN_TOKEN }} -DBUILDING_CI=true --no-daemon | |
- name: Upload Build Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: oneconfig-artifacts | |
path: versions/**/build/libs/ |