diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c9e82fd04..8384cbcea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,14 +19,14 @@ jobs: steps: - id: set-ver 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 run: | if [ ! -z "${{ secrets.RELEASE_KEY_STORE }}" ]; then - echo "::set-output name=sign::yes" + echo "sign=yes" >> $GITHUB_OUTPUT fi if [ ! -z "${{ secrets.SERVICE_ACCOUNT_JSON }}" ]; then - echo "::set-output name=play::yes" + echo "play=yes" >> $GITHUB_OUTPUT fi build: @@ -48,7 +48,8 @@ jobs: - name: Release Apk Sign 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_PASSWORD='${{ secrets.RELEASE_KEY_PASSWORD }}' >> gradle.properties echo RELEASE_STORE_PASSWORD='${{ secrets.RELEASE_STORE_PASSWORD }}' >> gradle.properties diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b2029b005..1b93082c4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,15 +22,15 @@ jobs: steps: - id: set-ver run: | - echo "::set-output name=version::$(date -d "8 hour" -u +3.%y.%m%d%H)" - echo "::set-output name=versionL::$(date -d "8 hour" -u +3.%y.%m%d%H%M)" + echo "version=$(date -d "8 hour" -u +3.%y.%m%d%H)" >> $GITHUB_OUTPUT + echo "versionL=$(date -d "8 hour" -u +3.%y.%m%d%H%M)" >> $GITHUB_OUTPUT - id: check run: | if [ ${{ secrets.LANZOU_ID }} ]; then - echo "::set-output name=lanzou::yes" + echo "lanzou=yes" >> $GITHUB_OUTPUT fi if [ ${{ secrets.BOT_TOKEN }} ]; then - echo "::set-output name=telegram::yes" + echo "telegram=yes" >> $GITHUB_OUTPUT fi build: