Skip to content

Commit 0fba315

Browse files
committed
ci: Escape workflows
1 parent adbecde commit 0fba315

3 files changed

Lines changed: 21 additions & 20 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ body:
2727
description: Which server version version you using? If your server version is not listed, it is not supported. Update to a supported version first.
2828
multiple: false
2929
options:
30+
- '1.18.1'
3031
- '1.17.1'
3132
- '1.16.5'
3233
- '1.15.2'

.github/workflows/build.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
name: "build"
1+
name: build
22

3-
on: ["pull_request", "push"]
3+
on: [ pull_request, push ]
44

55
jobs:
66
build:
7-
runs-on: "ubuntu-latest"
7+
runs-on: ubuntu-latest
88
steps:
9-
- name: "Checkout Repository"
10-
uses: "actions/checkout@v2.3.4"
11-
- name : "Validate Gradle Wrapper"
12-
uses : "gradle/wrapper-validation-action@v1.0.4"
13-
- name: "Setup Java"
14-
uses: "actions/setup-java@v2.3.1"
9+
- name: Checkout Repository
10+
uses: actions/checkout@v2.3.4
11+
- name: Validate Gradle Wrapper
12+
uses: gradle/wrapper-validation-action@v1.0.4
13+
- name: Setup Java
14+
uses: actions/setup-java@v2.3.1
1515
with:
16-
distribution: "temurin"
17-
java-version: "17"
18-
- name: "Clean Build"
19-
run: "./gradlew clean build"
20-
- name : "Archive Artifacts"
21-
uses : "actions/upload-artifact@v2.2.4"
22-
with :
23-
name : "Plot2Dynmap-SNAPSHOT"
24-
path : "build/libs/*-SNAPSHOT.jar"
16+
distribution: temurin
17+
java-version: 17
18+
- name: Clean Build
19+
run: ./gradlew clean build
20+
- name: Archive Artifacts
21+
uses: actions/upload-artifact@v2.2.4
22+
with:
23+
name: Plot2Dynmap-SNAPSHOT
24+
path: build/libs/*-SNAPSHOT.jar

.github/workflows/release-drafter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "draft release"
1+
name: draft release
22

33
on:
44
push:
@@ -9,6 +9,6 @@ jobs:
99
update_release_draft:
1010
runs-on : ubuntu-latest
1111
steps :
12-
- uses : release-drafter/release-drafter@v5
12+
- uses : release-drafter/release-drafter@v5.15.0
1313
env :
1414
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)