Update Localisations for European Spanish, Japanese, Traditional Chin… #134
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: Compile & Release | |
on: | |
push: | |
paths: | |
- '**.gradle' | |
- '**.properties' | |
- '**/src/**' | |
- '.github/**' | |
branches: | |
- v4 | |
- v5 | |
- v6 | |
- v7 | |
- v8 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Upload to Maven | |
run: ./gradlew publish modPublish --stacktrace | |
if: | | |
!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.pull_request.title, '[ci skip]') | |
env: | |
MAVEN_PASS: ${{ secrets.MAVEN_PASS }} | |
curse_api_key: ${{ secrets.CF_API_KEY }} | |
modrinth_key: ${{ secrets.MODRINTH_KEY }} |