Update GitHub Actions Workflow (#216)

* Update set-output in actions
* Remove GitHub cache action
main
Timo Ludwig 2023-02-02 03:37:00 +01:00 committed by GitHub
parent fc5221bf53
commit 2558b4897b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 12 deletions

View File

@ -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