Merge branch 'dev' #15
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: Pipeline | |
on: | |
push: | |
branches: [ "main" ] | |
permissions: | |
contents: read # for checkout | |
jobs: | |
pipeline: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # to be able to publish a GitHub release | |
issues: write # to be able to comment on released issues | |
pull-requests: write # to be able to comment on released pull requests | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- name: Install dependencies | |
run: npm install | |
- name: Build & Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # default token, will not trigger release events, use semantic-release plugins on 'success' instead | |
MODRINTH_PAT: ${{ secrets.MODRINTH_PAT }} | |
CURSEFORGE_PAT: ${{ secrets.CURSEFORGE_PAT }} | |
run: | | |
chmod +x ./build.sh | |
chmod +x ./gradlew | |
npx semantic-release@24 |