diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9f5deb9..ec8c1d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -68,12 +68,12 @@ jobs: - name: Retrieve latest version (source) if: matrix.cli-version == 'source' run: | - echo "AWSCLI_VERSION=ref:$(asdf latest awscli 2)" >> "${GITHUB_ENV}" + echo "AWSCLI_VERSION=ref:$(asdf latest awscli 2)" >> $GITHUB_ENV - name: Retrieve latest version (binary) if: matrix.cli-version != 'source' run: | - echo "AWSCLI_VERSION=$(asdf latest awscli 2)" >> "${GITHUB_ENV}" + echo "AWSCLI_VERSION=$(asdf latest awscli 2)" >> $GITHUB_ENV - name: asdf_plugin_test uses: asdf-vm/actions/plugin-test@v2