diff options
author | saturneric <[email protected]> | 2024-07-29 12:11:55 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-29 12:11:55 +0000 |
commit | 8c35a697e3d2503643c3df79cb31374834dda993 (patch) | |
tree | 5447a0f588738111323cdcc9f6a34e5a6dd85ed3 | |
parent | fix: a qt5 package issue on windows (diff) | |
download | GpgFrontend-8c35a697e3d2503643c3df79cb31374834dda993.tar.gz GpgFrontend-8c35a697e3d2503643c3df79cb31374834dda993.zip |
fix: BUILD_TYPE_LOWER=${BUILD_TYPE,,}: bad substitution
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 525c566d..8e12c94b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -252,7 +252,9 @@ jobs: --team-id ${{secrets.APPLE_DEVELOPER_TEAM_ID}} \ --password ${{secrets.APPLE_DEVELOPER_ID_SECRET}} \ ${{github.workspace}}/build/GpgFrontend-${{env.sha_short}}-x86_64.zip - echo "BUILD_TYPE_LOWER=${BUILD_TYPE,,}" >> ${GITHUB_ENV} + + + echo "BUILD_TYPE_LOWER=$(echo ${BUILD_TYPE} | tr '[:upper:]' '[:lower:]')" >> ${GITHUB_ENV} echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> ${GITHUB_ENV} if: matrix.os == 'macos-13' || matrix.os == 'macos-12' || matrix.os == 'macos-14' |