From 16d0235d37d1dda5a6641192e124d51805443352 Mon Sep 17 00:00:00 2001 From: Kareem Farid Date: Mon, 13 Jan 2025 14:26:20 +0200 Subject: [PATCH] ci: fix bug with install-pdk steps using incorrect syntax Signed-off-by: Kareem Farid --- .github/actions/install-pdk/action.yaml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/actions/install-pdk/action.yaml b/.github/actions/install-pdk/action.yaml index 0deb7d8..1c0bf70 100644 --- a/.github/actions/install-pdk/action.yaml +++ b/.github/actions/install-pdk/action.yaml @@ -3,13 +3,7 @@ description: 'Install PDK using volare. Uses github actions cache' runs: using: "composite" steps: - - name: Set Env Variables - shell: bash - run: | - echo "PDK_ROOT=$HOME/.volare" >> $GITHUB_OUTPUT - echo "OPEN_PDKS_COMMIT=bdc9412b3e468c102d01b7cf6337be06ec6e9c9a" >> $GITHUB_OUTPUT - name: Cache PDK - shell: bash id: cache-pdk uses: actions/cache/restore@v4 with: @@ -24,7 +18,6 @@ runs: pip install volare volare enable ${{ env.OPEN_PDKS_COMMIT }} - name: Save PDK Cache - shell: bash if: ${{ steps.cache-pdk.outputs.cache-hit != 'true' }} uses: actions/cache/save@v4 with: