v0.3.0-SNAPSHOT - Updated dependencies & module.properties formatting #12
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: "Build and Deploy" | |
on: | |
release: | |
types: [published,edited] | |
jobs: | |
build: | |
# Set up the OS | |
runs-on: ubuntu-latest | |
env: | |
# Sonatype Credentials & GitHub token | |
SONATYPE_USERNAME: '${{ secrets.SONATYPE_USERNAME }}' | |
SONATYPE_PASSWORD: '${{ secrets.SONATYPE_PASSWORD }}' | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
# Set environment | |
ENV: 'prod' | |
PROJECT_NAME: 'TranslationsModule' | |
steps: | |
# Checkout the Code | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
# Set up git hashes environment variables | |
- name: Git Hashes | |
uses: Im-Fran/[email protected] | |
# Set up version from tag environment variables | |
- name: Version from Tag Action | |
uses: Im-Fran/[email protected] | |
with: | |
remove-first-character: 'v' | |
# Set up the JDK | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: adopt | |
java-version: 11 | |
cache: 'gradle' | |
# Make gradle executable | |
- name: Make gradle executable | |
run: chmod +x gradlew | |
# Clean, Test, Publish and Build (in that order to save the artifact to the action) | |
- name: Test, Deploy and Build with Gradle | |
run: ./gradlew clean test shadowJar dokkaHtml publish publishToSonatype closeAndReleaseSonatypeStagingRepository -no-daemon | |
# Now we store the artifact in the action | |
- name: Upload the artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ env.PROJECT_NAME }} | |
path: ./build/libs/${{ env.PROJECT_NAME }}-${{ env.VERSION }}.jar | |
# Here we upload the binary to the release | |
- name: Upload to release | |
uses: JasonEtco/upload-to-release@master | |
with: | |
args: ./build/libs/${{ env.PROJECT_NAME }}-${{ env.VERSION }}.jar application/java-archive | |
# Now we deploy the documents to GitHub pages | |
- name: Deploy Dokka | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: build/dokka | |
clean: true | |
clean-exclude: | | |
CNAME |