Skip to content

Commit

Permalink
Merge pull request #6 from devigned/fix-runner-os
Browse files Browse the repository at this point in the history
add the runner os release env var
  • Loading branch information
cpuguy83 authored Apr 6, 2022
2 parents 6f1c35d + b310c75 commit a063a67
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
- uses: actions/checkout@v2
- name: Set RELEASE_VERSION ENV var
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
- name: lowercase the runner OS name
shell: bash
run: |
OS=$(echo "${{ runner.os }}" | tr '[:upper:]' '[:lower:]')
echo "RUNNER_OS=$OS" >> $GITHUB_ENV
- name: Install latest Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down

0 comments on commit a063a67

Please sign in to comment.