actions: use github.workspace instead of platform specific environment variables syntax

This commit is contained in:
Josh Tynjala
2024-01-10 10:11:11 -08:00
parent e6205bf3aa
commit a48898849e

View File

@@ -36,7 +36,7 @@ jobs:
- name: Rebuild Lime tools - name: Rebuild Lime tools
run: | run: |
haxelib dev lime $GITHUB_WORKSPACE haxelib dev lime ${{ github.workspace }}
haxelib run lime rebuild tools -nocolor -verbose -nocffi haxelib run lime rebuild tools -nocolor -verbose -nocffi
haxelib run lime setup -alias -y -nocffi haxelib run lime setup -alias -y -nocffi
@@ -105,7 +105,7 @@ jobs:
- name: Rebuild Lime tools - name: Rebuild Lime tools
run: | run: |
haxelib dev lime $GITHUB_WORKSPACE haxelib dev lime ${{ github.workspace }}
haxelib run lime rebuild tools -nocolor -verbose -nocffi haxelib run lime rebuild tools -nocolor -verbose -nocffi
haxelib run lime setup -alias -y -nocffi haxelib run lime setup -alias -y -nocffi
@@ -157,7 +157,7 @@ jobs:
- name: Rebuild Lime tools - name: Rebuild Lime tools
run: | run: |
haxelib dev lime $Env:GITHUB_WORKSPACE haxelib dev lime ${{ github.workspace }}
haxelib run lime rebuild tools -nocolor -verbose -nocffi haxelib run lime rebuild tools -nocolor -verbose -nocffi
haxelib run lime setup -alias -y -nocffi haxelib run lime setup -alias -y -nocffi
@@ -236,7 +236,7 @@ jobs:
- name: Rebuild Lime tools - name: Rebuild Lime tools
run: | run: |
haxelib dev lime $GITHUB_WORKSPACE haxelib dev lime ${{ github.workspace }}
haxelib run lime rebuild tools -nocolor -verbose -nocffi haxelib run lime rebuild tools -nocolor -verbose -nocffi
haxelib run lime setup -alias -y -nocffi haxelib run lime setup -alias -y -nocffi
@@ -294,7 +294,7 @@ jobs:
- name: Rebuild Lime tools - name: Rebuild Lime tools
run: | run: |
haxelib dev lime $GITHUB_WORKSPACE haxelib dev lime ${{ github.workspace }}
haxelib run lime rebuild tools -nocolor -verbose -nocffi haxelib run lime rebuild tools -nocolor -verbose -nocffi
haxelib run lime setup -alias -y -nocffi haxelib run lime setup -alias -y -nocffi
@@ -346,7 +346,7 @@ jobs:
- name: Rebuild Lime tools - name: Rebuild Lime tools
run: | run: |
haxelib dev lime $GITHUB_WORKSPACE haxelib dev lime ${{ github.workspace }}
haxelib run lime rebuild tools -nocolor -verbose -nocffi haxelib run lime rebuild tools -nocolor -verbose -nocffi
haxelib run lime setup -alias -y -nocffi haxelib run lime setup -alias -y -nocffi
cp project/lib/hashlink/other/osx/entitlements.xml templates/bin/hl/entitlements.xml cp project/lib/hashlink/other/osx/entitlements.xml templates/bin/hl/entitlements.xml
@@ -439,7 +439,7 @@ jobs:
- name: Install Haxe dependencies - name: Install Haxe dependencies
run: | run: |
haxelib install dox --quiet haxelib install dox --quiet
haxelib dev lime $GITHUB_WORKSPACE haxelib dev lime ${{ github.workspace }}
- name: Build docs - name: Build docs
working-directory: docs working-directory: docs