ViaFabric/.github/workflows/publish.yml

26 lines
812 B
YAML
Raw Normal View History

2022-05-22 19:17:14 +02:00
# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: publish
on: [workflow_dispatch] # Manual trigger
jobs:
build:
runs-on: ubuntu-22.04
2022-05-22 19:17:14 +02:00
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
2022-05-22 19:17:14 +02:00
with:
distribution: 'temurin'
java-version: 17
2022-05-22 19:17:14 +02:00
- name: build and publish
env:
CURSEFORGE_API_KEY: ${{ secrets.CREEPER_CF }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
run: ./gradlew curseforge modrinth
- uses: actions/upload-artifact@v3
2022-05-22 19:17:14 +02:00
with:
name: Artifacts
path: build/libs/