diff --git a/.github/actions/create-dev-env/action.yml b/.github/actions/create-dev-env/action.yml index 27746891..5686b6d1 100644 --- a/.github/actions/create-dev-env/action.yml +++ b/.github/actions/create-dev-env/action.yml @@ -11,7 +11,7 @@ runs: uses: actions/setup-python@v4 with: python-version: 3.x - if: ${{ runner.arch == 'X64' }} + if: runner.arch == 'X64' - name: Install Dev Dependencies 📦 run: | diff --git a/.github/workflows/docker-build-test-upload.yml b/.github/workflows/docker-build-test-upload.yml index f06889d1..25f04838 100644 --- a/.github/workflows/docker-build-test-upload.yml +++ b/.github/workflows/docker-build-test-upload.yml @@ -38,7 +38,7 @@ jobs: # Also, they might have running or stopped containers, # which are not cleaned up by `docker system prun` - name: Reset docker state and cleanup artifacts 🗑️ - if: ${{ inputs.platform != 'x86_64' }} + if: inputs.platform != 'x86_64' run: | docker kill $(docker ps --quiet) || true docker rm $(docker ps --all --quiet) || true @@ -47,14 +47,14 @@ jobs: shell: bash - name: Load parent built image to Docker 📥 - if: ${{ inputs.parentImage != '' }} + if: inputs.parentImage != '' uses: ./.github/actions/load-image with: image: ${{ inputs.parentImage }} platform: ${{ inputs.platform }} - name: Pull ubuntu:22.04 image 📥 - if: ${{ inputs.parentImage == '' }} + if: inputs.parentImage == '' run: docker pull ubuntu:22.04 shell: bash