This repository has been archived by the owner on Mar 5, 2024. It is now read-only.
Update README.md #1
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: Mod Build | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: zulu | |
cache: gradle | |
- name: Build with Gradle | |
env: | |
USERNAME: ${{ secrets.USERNAME }} | |
READ_PACKAGES_TOKEN: ${{ secrets.READ_PACKAGES_TOKEN }} | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 10 | |
max_attempts: 3 | |
command: ./gradlew build | |
- name: Publish to Github Packages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: ./gradlew build publish | |
- name: Cleanup old artifacts | |
uses: actions/delete-package-versions@v3 | |
with: | |
package-name: 'sophisticatedbackpacks.sophisticatedbackpacks' | |
min-versions-to-keep: 10 | |
- name: Code Quality | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: ./gradlew -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=${{ secrets.SONAR_TOKEN }} -Dsonar.organization=p3pp3rf1y-github sonarqube | |
- name : Retrieve Version | |
run: | | |
echo "$(${{github.workspace}}/gradlew -q printVersionName | awk -F "version:" '{printf $2}')" | |
echo "VERSION_NAME=$(${{github.workspace}}/gradlew -q printVersionName | awk -F "version:" '{printf $2}')" >> $GITHUB_OUTPUT | |
id: version | |
- name : Compile version message | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const gh = ${{ toJSON(github) }}; | |
core.setOutput('EMBED_TITLE', "[" + gh.event.repository.name + ":" + gh.ref_name +"] new build ${{steps.version.outputs.VERSION_NAME}}"); | |
core.setOutput('EMBED_URL', "https://github.com/P3pp3rF1y/SophisticatedBackpacks/packages/454305?version=${{steps.version.outputs.VERSION_NAME}}"); | |
core.setOutput('EMBED_AUTHOR_NAME', gh.event.sender.login); | |
core.setOutput('EMBED_AUTHOR_ICON_URL', gh.event.sender.avatar_url); | |
const commits = ${{ toJSON(github.event.commits) }}; | |
let description = ""; | |
for (const commit of commits) { | |
if (description.length !== 0) { | |
description += "\n"; | |
} | |
description += "[" + commit.id.slice(0,7) + "](<" + commit.url + ">) " + commit.message + " - " + commit.author.username; | |
} | |
core.setOutput('EMBED_DESCRIPTION', description); | |
id: embed | |
- name: Send Discord Notification | |
uses: tsickert/[email protected] | |
with: | |
webhook-url: ${{ secrets.DISCORD_WEBHOOK }} | |
embeds: ${{steps.embed.outputs.EMBEDS}} | |
content: null | |
embed-title: "${{steps.embed.outputs.EMBED_TITLE}}" | |
embed-url: "${{steps.embed.outputs.EMBED_URL}}" | |
embed-description: "${{steps.embed.outputs.EMBED_DESCRIPTION}}" | |
embed-author-name: "${{steps.embed.outputs.EMBED_AUTHOR_NAME}}" | |
embed-author-icon-url: "${{steps.embed.outputs.EMBED_AUTHOR_ICON_URL}}" | |
embed-color: 58633 |