Skip to content

Commit ffbf4b4

Browse files
authored
Fix non-Amper Procfile and tweak GitHub meta (#85)
* Update Procfile paths for non-Amper build directories * Update CI to use JDK 21, ignore `.env`, and tweak issue templates * Make gradlew executable
1 parent d624a43 commit ffbf4b4

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ A clear and concise description of what the bug is.
1313
**To Reproduce**
1414
Steps to reproduce the behavior:
1515
1. Go to '...'
16-
2. Click on '....'
17-
3. Scroll down to '....'
16+
2. Click on '...'
17+
3. Scroll down to '...'
1818
4. See error
1919

2020
**Expected behavior**

.github/ISSUE_TEMPLATE/skill-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ assignees: yttrian
1111
What should this new skill be able to do?
1212

1313
**Are there any other skills already similar to it?**
14-
See the full skills list first: https://glyph.yttr.org/en/latest/skills.html
14+
See the full skills list first: https://glyph.yttr.org/
1515

1616
**How should it be triggered?**
1717
What must someone say to activate this skill?

.github/workflows/gradle.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,14 @@ on: [push]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98

109
steps:
11-
- uses: actions/checkout@v2
12-
- name: Set up JDK 17
13-
uses: actions/setup-java@v1
14-
with:
15-
java-version: 17
16-
- name: Grant execute permission for gradlew
17-
run: chmod +x gradlew
18-
- name: Build with Gradle
19-
run: ./gradlew build -x test
10+
- uses: actions/checkout@v4
11+
- name: Set up JDK 21
12+
uses: actions/setup-java@v4
13+
with:
14+
java-version: '21'
15+
distribution: 'zulu'
16+
- name: Build with Gradle
17+
run: ./gradlew build -x test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.env
12
.gradle
23
.idea
34
.kotlin

Procfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
bot: ./glyph-bot/build/install/glyph-bot-jvm/bin/glyph-bot
2-
web: ./glyph-web/build/install/glyph-web-jvm/bin/glyph-web
1+
bot: ./glyph-bot/build/install/glyph-bot/bin/glyph-bot
2+
web: ./glyph-web/build/install/glyph-web/bin/glyph-web

gradlew

100644100755
File mode changed.

0 commit comments

Comments
 (0)