Upstream GitHub Actions and correct typos in issue templates. (#204)

This commit is contained in:
Kichura 2022-10-13 22:10:21 +02:00 committed by GitHub
parent ba5f0c175c
commit 21603a0e5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

View File

@ -7,7 +7,7 @@ body:
attributes: attributes:
value: | value: |
**Before reporting a bug, please see if using master/dev builds from https://ci.viaversion.com/ fixes your issue.** **Before reporting a bug, please see if using master/dev builds from https://ci.viaversion.com/ fixes your issue.**
Whenever you see fit, you can upload images or video to any of the textfields. Whenever you see fit, you can upload images or videos to any of the text fields.
- type: input - type: input
attributes: attributes:

View File

@ -8,13 +8,13 @@ on: [ pull_request, push ]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-22.04
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: actions/setup-java@v1 - uses: actions/setup-java@v3
with: with:
java-version: 17 java-version: 17
- uses: actions/cache@v2 - uses: actions/cache@v3
with: with:
path: | path: |
~/.gradle/caches ~/.gradle/caches
@ -24,7 +24,7 @@ jobs:
${{ runner.os }}-gradle- ${{ runner.os }}-gradle-
- name: build - name: build
run: ./gradlew build run: ./gradlew build
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v3
with: with:
name: Artifacts name: Artifacts
path: build/libs/ path: build/libs/

View File

@ -8,10 +8,10 @@ on: [workflow_dispatch] # Manual trigger
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-22.04
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: actions/setup-java@v1 - uses: actions/setup-java@v3
with: with:
java-version: 17 java-version: 17
- name: build and publish - name: build and publish
@ -19,7 +19,7 @@ jobs:
CURSEFORGE_API_KEY: ${{ secrets.CREEPER_CF }} CURSEFORGE_API_KEY: ${{ secrets.CREEPER_CF }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
run: ./gradlew curseforge modrinth run: ./gradlew curseforge modrinth
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v3
with: with:
name: Artifacts name: Artifacts
path: build/libs/ path: build/libs/