From 5b6b2dc51639bda1d7f8c8e1fe35bd822dcd0ef0 Mon Sep 17 00:00:00 2001 From: Paulchen-Panther <16664240+Paulchen-Panther@users.noreply.github.com> Date: Sat, 22 Feb 2025 09:29:07 +0100 Subject: [PATCH] update workflow --- .github/workflows/qt5_6.yml | 29 +++++------------------------ 1 file changed, 5 insertions(+), 24 deletions(-) diff --git a/.github/workflows/qt5_6.yml b/.github/workflows/qt5_6.yml index e6655af8..afed8a6c 100644 --- a/.github/workflows/qt5_6.yml +++ b/.github/workflows/qt5_6.yml @@ -61,15 +61,10 @@ jobs: with: submodules: recursive - - name: 🔧 Prepare + - name: 🔧 Append PR number to version (PR only) + if: ${{ inputs.event_name == 'pull_request' }} shell: bash - run: | - echo '::group::Append PR number to version (PR only)' - if [[ "${{ inputs.event_name }}" = "pull_request" ]]; then - tr -d '\n' < .version > temp && mv temp .version - echo -n "+PR${{ inputs.pull_request_number }}" >> .version - fi - echo '::endgroup::' + run: tr -d '\n' < .version > temp && mv temp .version && echo -n "+PR${{ inputs.pull_request_number }}" >> .version - name: 👷 Build shell: bash @@ -127,26 +122,12 @@ jobs: uses: actions/cache@v4 with: path: ~/Library/Caches/Homebrew/downloads - key: ${{ runner.os }}-homebrew-packages-${{ inputs.qt_version }} + key: ${{ runner.os }}-${{ matrix.architecture }}-homebrew-packages-${{ inputs.qt_version }} - name: 📥 Install dependencies shell: bash run: brew update -q && brew install -q qt@${{ inputs.qt_version }} vulkan-headers ninja libftdi || true - - name: 🔧 Prepare - shell: bash - run: | - echo '::group::Append PR number to version (PR only)' - if [[ "${{ inputs.event_name }}" = "pull_request" ]]; then - tr -d '\n' < .version > temp && mv temp .version - echo -n "+PR${{ inputs.pull_request_number }}" >> .version - fi - echo '::endgroup::' - - echo '::group::Update/Install dependencies' - brew update -q && brew install -q qt@${{ inputs.qt_version }} vulkan-headers ninja libftdi || true - echo '::endgroup::' - - name: 👷 Build shell: bash run: | @@ -181,7 +162,7 @@ jobs: with: submodules: recursive - - name: 🔧 Prepare PR + - name: 🔧 Append Pull Request number to version (PR only) if: ${{ inputs.event_name == 'pull_request' }} shell: bash run: tr -d '\n' < .version > temp && mv temp .version && echo -n "+PR${{ inputs.pull_request_number }}" >> .version