Skip to content

Commit

Permalink
Fix apphost build env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Popax21 committed Apr 19, 2024
1 parent 90f38e6 commit a2a358b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-apphost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
workflow_dispatch:

env:
RUSTUP_HOME: $HOME/.rustup
CARGO_HOME: $HOME/.cargo
CARGO_TERM_COLOR: always
MACOSX_DEPLOYMENT_TARGET: 10.12

Expand Down Expand Up @@ -68,6 +66,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup environment variables
run: |
echo "RUSTUP_HOME=$HOME/.rustup" >> "$GITHUB_ENV"
echo "CARGO_HOME=$HOME/.cargo" >> "$GITHUB_ENV"
- name: Install dependencies
if: ${{ matrix.apt_deps }}
run: sudo apt-get install -y ${{ matrix.apt_deps }}
Expand Down

0 comments on commit a2a358b

Please sign in to comment.