Skip to content

Commit 1fe16e4

Browse files
Merge pull request #6 from ChillyCheesy/dev
Dev
2 parents 8f434e9 + a67c47a commit 1fe16e4

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/app-build.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,15 @@ jobs:
4646
./gradlew clean :modulo-api:publish :modulo-server:publish
4747
- name: Setup release title
4848
if: github.ref == 'refs/heads/master'
49-
run: TITLE=$(cat gradle.properties | grep modulo_version | cut -d '=' -f 2)
49+
run: echo "TITLE=$(cat gradle.properties | grep modulo_version | cut -d '=' -f 2)" >> $GITHUB_ENV
5050
- name: Create release
5151
if: github.ref == 'refs/heads/master'
5252
uses: marvinpinto/action-automatic-releases@latest
5353
with:
54-
repo_token: $GITHUB_TOKEN
55-
automatic_release_tag: $TITLE
56-
title: 🪤 $TITLE
54+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
55+
automatic_release_tag: ${{ env.TITLE }}
56+
title: 🪤 ${{ env.TITLE }}
57+
prerelease: false
5758
files: |
5859
modulo-api/build/libs/*.jar
59-
modulo-server/build/libs/*.jar
60-
env:
61-
GITHUB_TOKEN: ${{ github.token }}
60+
modulo-server/build/libs/*.jar

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
modulo_modulename=Modulo
2-
modulo_version=BINKS-0.0.4
2+
modulo_version=BINKS-0.1.0

0 commit comments

Comments
 (0)