fix: attempt to serialize reward lazyloadIdentifier first #5
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: "Deploy" | |
| on: | |
| workflow_dispatch: # manually triggered | |
| push: | |
| branches: [master] | |
| paths: | |
| - '**/*.java' | |
| - '**/*.toml' | |
| jobs: | |
| build-deploy: | |
| if: github.repository_owner == 'alpine-network' && github.ref_name == 'master' | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: "Checkout" | |
| # https://github.com/actions/checkout/releases | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: "Prepare JDK" | |
| # https://github.com/actions/setup-java/releases | |
| uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| check-latest: true | |
| - name: "Prepare Gradle" | |
| # https://github.com/gradle/actions/releases | |
| uses: gradle/actions/setup-gradle@017a9effdb900e5b5b2fddfb590a105619dca3c3 # v4.4.2 | |
| with: | |
| validate-wrappers: true | |
| gradle-version: wrapper | |
| cache-disabled: false | |
| - name: "Build Project" | |
| run: ./gradlew build --full-stacktrace | |
| - name: "Publish to Maven" | |
| run: ./gradlew publishAllPublicationsToAlpineCloudRepository --full-stacktrace | |
| env: | |
| ALPINE_MAVEN_NAME: ${{ secrets.ALPINE_MAVEN_NAME }} | |
| ALPINE_MAVEN_SECRET: ${{ secrets.ALPINE_MAVEN_SECRET }} | |
| - name: "Read Version" | |
| if: github.event_name == 'workflow_dispatch' | |
| run: | | |
| set -e | |
| RELEASE_VERSION=$(./gradlew properties --full-stacktrace | grep "version:" | awk '{print $2}') | |
| if [[ -z "$RELEASE_VERSION" ]]; then | |
| echo "Error: unable to parse version from gradle properties." | |
| exit 1 | |
| fi | |
| echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV | |
| - name: "Create GitHub Release" | |
| if: github.event_name == 'workflow_dispatch' && !contains(env.RELEASE_VERSION, '-') | |
| # https://github.com/softprops/action-gh-release/releases | |
| uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: ${{ env.RELEASE_VERSION }} | |
| name: v${{ env.RELEASE_VERSION }} | |
| files: | | |
| build/libs/Itemize-${{ env.RELEASE_VERSION }}.jar | |
| plugin-api/build/libs/itemize-api-${{ env.RELEASE_VERSION }}.jar | |
| fail_on_unmatched_files: true | |
| make_latest: true | |
| prerelease: false | |
| draft: true |