fix: Release buildscript fails because the build date is missing
This commit is contained in:
parent
13a223879b
commit
a76c0f929c
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue