File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -46,16 +46,15 @@ jobs:
46
46
./gradlew clean :modulo-api:publish :modulo-server:publish
47
47
- name : Setup release title
48
48
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
50
50
- name : Create release
51
51
if : github.ref == 'refs/heads/master'
52
52
uses : marvinpinto/action-automatic-releases@latest
53
53
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
57
58
files : |
58
59
modulo-api/build/libs/*.jar
59
- modulo-server/build/libs/*.jar
60
- env :
61
- GITHUB_TOKEN : ${{ github.token }}
60
+ modulo-server/build/libs/*.jar
Original file line number Diff line number Diff line change 1
1
modulo_modulename =Modulo
2
- modulo_version =BINKS-0.0.4
2
+ modulo_version =BINKS-0.1.0
You can’t perform that action at this time.
0 commit comments