Skip to content

Commit b49ed25

Browse files
committed
Fix environment value
1 parent 0688862 commit b49ed25

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
uses: actions/setup-dotnet@v1
2020
with:
2121
dotnet-version: ${{ env.dotnet }}
22+
- name: set environment
23+
run: echo ::set-env name=workspace::$GITHUB_WORKSPACE
2224
- name: publish
2325
run: dotnet publish HardHat/HardHat.csproj -o "${{ env.workspace }}/Dist/" -c release -r win10-x64
2426
- name: branch
@@ -37,6 +39,8 @@ jobs:
3739
uses: actions/setup-dotnet@v1
3840
with:
3941
dotnet-version: ${{ env.dotnet }}
42+
- name: set environment
43+
run: echo ::set-env name=workspace::$GITHUB_WORKSPACE
4044
- name: publish
4145
run: dotnet publish HardHat/HardHat.csproj -o "${{ env.workspace }}/Dist/" -c release -r osx.10.12-x64
4246
- name: branch

0 commit comments

Comments
 (0)