mirror of
https://github.com/ashhhleyyy/player-pronouns.git
synced 2024-11-01 07:07:38 +00:00
41 lines
975 B
YAML
41 lines
975 B
YAML
|
name: Fabric Release
|
||
|
|
||
|
on:
|
||
|
release:
|
||
|
types:
|
||
|
- published
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/cache@v2
|
||
|
with:
|
||
|
path: |
|
||
|
~/.gradle/loom-cache
|
||
|
~/.gradle/caches
|
||
|
~/.gradle/wrapper
|
||
|
key: gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
||
|
restore-keys: |
|
||
|
gradle-
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Set up JDK
|
||
|
uses: actions/setup-java@v1
|
||
|
with:
|
||
|
java-version: 17
|
||
|
|
||
|
- name: Grant execute permission for gradlew
|
||
|
run: chmod +x gradlew
|
||
|
|
||
|
- name: Build and publish with Gradle
|
||
|
run: ./gradlew modrinth
|
||
|
env:
|
||
|
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
|
||
|
|
||
|
- name: Upload GitHub release
|
||
|
uses: AButler/upload-release-assets@v2.0
|
||
|
with:
|
||
|
files: 'build/libs/player-pronouns-*.jar'
|
||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|