Skip to content

Commit

Permalink
fix env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
jonapich committed Jul 12, 2024
1 parent 0939426 commit a1062e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ runs:
env:
TGF_PATH: ${{ inputs.tgf-path }}
VERSION: ${{ inputs.ref }}
run: curl https://raw.githubusercontent.com/coveooss/tgf/$VERSION/get-latest-tgf.sh | bash
run: curl https://raw.githubusercontent.com/coveooss/tgf/${VERSION}/get-latest-tgf.sh | bash

- name: Install TGF (windows)
if: runner.os == 'Windows'
shell: powershell
env:
TGF_PATH: ${{ inputs.tgf-path }}
VERSION: ${{ inputs.ref }}
run: (Invoke-WebRequest https://raw.githubusercontent.com/coveooss/tgf/$VERSION/get-latest-tgf.ps1).Content | Invoke-Expression
run: (Invoke-WebRequest https://raw.githubusercontent.com/coveooss/tgf/${VERSION}/get-latest-tgf.ps1).Content | Invoke-Expression

0 comments on commit a1062e9

Please sign in to comment.