fix: Release buildscript fails because the build date is missing

This commit is contained in:
Artem Chepurnoy 2024-01-29 22:19:57 +02:00
parent 13a223879b
commit a76c0f929c
No known key found for this signature in database
GPG Key ID: FAC37D0CF674043E
1 changed files with 9 additions and 0 deletions

View File

@ -31,6 +31,9 @@ jobs:
with: with:
p12-filepath: desktopApp/macos-dev.cer p12-filepath: desktopApp/macos-dev.cer
p12-password: ${{ secrets.CERT_PASSWD }} p12-password: ${{ secrets.CERT_PASSWD }}
- id: vars
run: |
echo ::set-output name=tag::${GITHUB_REF:11}
- name: "Setup build env" - name: "Setup build env"
run: | run: |
echo "" >> gradle.properties echo "" >> gradle.properties
@ -86,6 +89,9 @@ jobs:
distribution: 'temurin' distribution: 'temurin'
java-version: '17' java-version: '17'
cache: 'gradle' cache: 'gradle'
- id: vars
run: |
echo ::set-output name=tag::${GITHUB_REF:11}
- name: "Setup build env" - name: "Setup build env"
run: | run: |
echo "" >> gradle.properties echo "" >> gradle.properties
@ -123,6 +129,9 @@ jobs:
11 11
17 17
cache: 'gradle' cache: 'gradle'
- id: vars
run: |
echo ::set-output name=tag::${GITHUB_REF:11}
- name: "Setup build env" - name: "Setup build env"
run: | run: |
echo "" >> gradle.properties echo "" >> gradle.properties