We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ffc23b commit eeb4360Copy full SHA for eeb4360
.github/workflows/release.yml
@@ -8,19 +8,21 @@ on:
8
jobs:
9
publish:
10
runs-on: ubuntu-latest
11
- container:
12
- image: openjdk:17-jdk
13
- options: --user root
14
steps:
15
- name: Install Git before checkout
16
shell: bash
17
run: |
18
- apt-get update
19
- apt-get install --no-install-recommends -y git
+ sudo apt-get update
+ sudo apt-get install --no-install-recommends -y git
20
- uses: actions/checkout@v3
21
with:
22
submodules: 'recursive'
23
- run: git config --global --add safe.directory /__w/MMDBot/MMDBot
+ - name: Set up JDK 17
+ uses: actions/setup-java@v3
+ with:
24
+ java-version: 17
25
+ distribution: 'zulu'
26
- name: Grant execute permission for gradlew
27
run: chmod +x gradlew
28
- name: Build Jar with Gradle
0 commit comments