Skip to content

Commit

Permalink
fix release env
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettMayson committed Nov 2, 2023
1 parent e3f105d commit 41b8bd7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ jobs:
profile: minimal
toolchain: stable
override: true
- run: ECHO "true" >> $RELEASE
if: startsWith(github.ref, 'refs/tags/')
- run: echo "RELEASE=true" >> $GITHUB_ENV
if: startsWith(github.ref, 'refs/tags/') && matrix.os.name == 'ubuntu'
- run: echo "RELEASE=true" >> $env:GITHUB_ENV
if: startsWith(github.ref, 'refs/tags/') && matrix.os.name == 'windows'
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
Expand Down

0 comments on commit 41b8bd7

Please sign in to comment.