Update action.yml
This commit is contained in:
parent
1ffc65eb0a
commit
fe8b8080ec
1 changed files with 9 additions and 7 deletions
16
action.yml
16
action.yml
|
|
@ -12,16 +12,18 @@ inputs:
|
|||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: FOO
|
||||
env.nimPath: nim-${{ inputs.nimVersion }}-${{ inputs.os }}_x64.tar.xz
|
||||
env.nimUrl: https://nim-lang.org/download/${{ env.nimPath }}
|
||||
- name: Set environment variables
|
||||
run: |
|
||||
set -x
|
||||
#echo "nimPath=nim-${{ inputs.nimVersion }}-${{ inputs.os }}_x64.tar.xz" >> $GITHUB_ENV
|
||||
#echo "nimUrl=https://nim-lang.org/download/${{ env.nimPath }}" >> $GITHUB_ENV
|
||||
nimPath=nim-${{ inputs.nimVersion }}-${{ inputs.os }}_x64.tar.xz
|
||||
nimUrl=https://nim-lang.org/download/${{ env.nimPath }}
|
||||
echo "nimPath=nim-${{ inputs.nimVersion }}-${{ inputs.os }}_x64.tar.xz" >> $GITHUB_ENV
|
||||
echo $GITHUB_ENV
|
||||
|
||||
- name: Set environment variables 2
|
||||
run: |
|
||||
set -x
|
||||
echo "nimUrl=https://nim-lang.org/download/${{ env.nimPath }}" >> $GITHUB_ENV
|
||||
echo $GITHUB_ENV
|
||||
|
||||
|
||||
- name: cache restore
|
||||
id: cachestep1
|
||||
|
|
|
|||
Loading…
Reference in a new issue