Skip to content

Commit

Permalink
ci: Fix adding erlang to PATH in windows runnner
Browse files Browse the repository at this point in the history
  • Loading branch information
evnu committed Nov 25, 2020
1 parent f6faf2c commit 1f79a48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install Erlang/Elixir
run: choco install elixir
- name: Extend PATH
run: echo "::add-path::C:\\ProgramData\\chocolatey\\lib\\Elixir\\bin"
run: echo "C:\\ProgramData\\chocolatey\\lib\\Elixir\\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Build API
working-directory: rustler_sys
run: |
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
override: true

- name: Extend PATH
run: echo "::add-path::C:\\ProgramData\\chocolatey\\lib\\Elixir\\bin"
run: echo "C:\\ProgramData\\chocolatey\\lib\\Elixir\\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append

- name: Hex
run: mix local.hex --force
Expand Down

0 comments on commit 1f79a48

Please sign in to comment.