diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 14727f781..cbe4cfb74 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -467,9 +467,9 @@ jobs: - name: Sign APK timeout-minutes: ${{ fromJSON(env.GITHUB_STEP_TIMEOUT_SMALL) }} if: success() - uses: r0adkll/sign-android-release@v1 + uses: ilharp/sign-android-release@v1 with: - # Check available parameters in: https://github.com/r0adkll/sign-android-release/blob/master/action.yml + # Check available parameters in: https://github.com/ilharp/sign-android-release/blob/master/action.yml releaseDirectory: app/build/outputs/apk/${{ matrix.type }} signingKeyBase64: ${{ env.BASE64_KEY }} alias: ${{ secrets.KEY_ALIAS }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ccf0cd0c2..3f3d0d131 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -148,7 +148,6 @@ jobs: # Save the path for other steps file(TO_CMAKE_PATH "$ENV{GITHUB_WORKSPACE}/${cmake_dir}" cmake_dir) - message("::set-output name=cmake_dir::${cmake_dir}") if (NOT "${{ runner.os }}" MATCHES "Windows") execute_process( @@ -168,16 +167,6 @@ jobs: file(DOWNLOAD "${ccache_url}" ccache.tar.xz SHOW_PROGRESS) execute_process(COMMAND ${CMAKE_COMMAND} -E tar xvf ccache.tar.xz) - - name: Prepare ccache timestamp - timeout-minutes: ${{ fromJSON(env.GITHUB_STEP_TIMEOUT_SMALL) }} - if: success() - working-directory: . - id: ccache_cache_timestamp - shell: cmake -P {0} - run: | - string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC) - message("::set-output name=timestamp::${current_date}") - - name: Install pthread timeout-minutes: ${{ fromJSON(env.GITHUB_STEP_TIMEOUT_MEDIUM) }} if: success()