From 2558b4897b9f2ed3c926b7229adf4c39991780ef Mon Sep 17 00:00:00 2001 From: Timo Ludwig Date: Thu, 2 Feb 2023 03:37:00 +0100 Subject: [PATCH] Update GitHub Actions Workflow (#216) * Update set-output in actions * Remove GitHub cache action --- .github/workflows/ci.yaml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4db9307..95e7d68 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,10 +44,10 @@ jobs: if [[ "$NAME" == "" ]]; then NAME="continuous" fi - echo "::set-output name=signMacRelease::$MSIGN" - echo "::set-output name=signWinRelease::$WSIGN" - echo "::set-output name=sha8::$NAME" - echo "::set-output name=isRelease::$RELEASE" + echo "signMacRelease=$MSIGN" >> $GITHUB_OUTPUT + echo "signWinRelease=$WSIGN" >> $GITHUB_OUTPUT + echo "sha8=$NAME" >> $GITHUB_OUTPUT + echo "isRelease=$RELEASE" >> $GITHUB_OUTPUT build: name: ${{ matrix.config.name }} @@ -94,13 +94,6 @@ jobs: fetch-depth: 0 - run: git fetch --tags --force - - name: Cache Qt - id: cache-qt - uses: actions/cache@v3.2.4 - with: - path: ${{matrix.config.QT_INST_DIR}}/Qt - key: ${{ runner.os }}${{ matrix.config.WIN_ARCH }}-qt-${{ env.QT_VERSION }} - - name: Env Script (windows) uses: ilammy/msvc-dev-cmd@v1 if: runner.os == 'Windows' @@ -129,7 +122,6 @@ jobs: dir: ${{matrix.config.QT_INST_DIR}} arch: ${{ matrix.config.QT_ARCH }} version: ${{ env.QT_VERSION }} - cached: ${{ steps.cache-qt.outputs.cache-hit }} - name: Install Dependencies shell: bash