Xwite
2022-10-14 20:15:51 +08:00
committed by GitHub
parent 3068eb2138
commit 2f6cb17b4d
2 changed files with 9 additions and 8 deletions
+5 -4
View File
@@ -19,14 +19,14 @@ jobs:
steps: steps:
- id: set-ver - id: set-ver
run: | run: |
echo "::set-output name=version::$(date -d "8 hour" -u +3.%y.%m%d%H)" echo "version=$(date -d "8 hour" -u +3.%y.%m%d%H)" >> $GITHUB_OUTPUT
- id: check - id: check
run: | run: |
if [ ! -z "${{ secrets.RELEASE_KEY_STORE }}" ]; then if [ ! -z "${{ secrets.RELEASE_KEY_STORE }}" ]; then
echo "::set-output name=sign::yes" echo "sign=yes" >> $GITHUB_OUTPUT
fi fi
if [ ! -z "${{ secrets.SERVICE_ACCOUNT_JSON }}" ]; then if [ ! -z "${{ secrets.SERVICE_ACCOUNT_JSON }}" ]; then
echo "::set-output name=play::yes" echo "play=yes" >> $GITHUB_OUTPUT
fi fi
build: build:
@@ -48,7 +48,8 @@ jobs:
- name: Release Apk Sign - name: Release Apk Sign
run: | run: |
echo "::set-output name=KeyStore::yes" # not use this output
# echo "KeyStore=yes" >> $GITHUB_OUTPUT
echo RELEASE_KEY_ALIAS='${{ secrets.RELEASE_KEY_ALIAS }}' >> gradle.properties echo RELEASE_KEY_ALIAS='${{ secrets.RELEASE_KEY_ALIAS }}' >> gradle.properties
echo RELEASE_KEY_PASSWORD='${{ secrets.RELEASE_KEY_PASSWORD }}' >> gradle.properties echo RELEASE_KEY_PASSWORD='${{ secrets.RELEASE_KEY_PASSWORD }}' >> gradle.properties
echo RELEASE_STORE_PASSWORD='${{ secrets.RELEASE_STORE_PASSWORD }}' >> gradle.properties echo RELEASE_STORE_PASSWORD='${{ secrets.RELEASE_STORE_PASSWORD }}' >> gradle.properties
+4 -4
View File
@@ -22,15 +22,15 @@ jobs:
steps: steps:
- id: set-ver - id: set-ver
run: | run: |
echo "::set-output name=version::$(date -d "8 hour" -u +3.%y.%m%d%H)" echo "version=$(date -d "8 hour" -u +3.%y.%m%d%H)" >> $GITHUB_OUTPUT
echo "::set-output name=versionL::$(date -d "8 hour" -u +3.%y.%m%d%H%M)" echo "versionL=$(date -d "8 hour" -u +3.%y.%m%d%H%M)" >> $GITHUB_OUTPUT
- id: check - id: check
run: | run: |
if [ ${{ secrets.LANZOU_ID }} ]; then if [ ${{ secrets.LANZOU_ID }} ]; then
echo "::set-output name=lanzou::yes" echo "lanzou=yes" >> $GITHUB_OUTPUT
fi fi
if [ ${{ secrets.BOT_TOKEN }} ]; then if [ ${{ secrets.BOT_TOKEN }} ]; then
echo "::set-output name=telegram::yes" echo "telegram=yes" >> $GITHUB_OUTPUT
fi fi
build: build: