We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6f1c35d + b310c75 commit a063a67Copy full SHA for a063a67
.github/workflows/release.yml
@@ -29,6 +29,11 @@ jobs:
29
- uses: actions/checkout@v2
30
- name: Set RELEASE_VERSION ENV var
31
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
32
+ - name: lowercase the runner OS name
33
+ shell: bash
34
+ run: |
35
+ OS=$(echo "${{ runner.os }}" | tr '[:upper:]' '[:lower:]')
36
+ echo "RUNNER_OS=$OS" >> $GITHUB_ENV
37
- name: Install latest Rust stable toolchain
38
uses: actions-rs/toolchain@v1
39
with:
0 commit comments