File tree 2 files changed +13
-3
lines changed
2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ jobs:
130
130
echo "::set-env name=SYMBOL_REGEX::\(exe\|dll\|pdb\)"
131
131
echo "::set-output name=symbols_archive::${{ steps.buildnumber.outputs.build_number }}-${{ matrix.build_type }}-win-symbols.zip"
132
132
fi
133
- # Configureation is broken into two steps because you can't set an env var and also reference it in the same step
133
+ # Configuration is broken into two steps because you can't set an env var and also reference it in the same step
134
134
- name : Configure Build Environment 2
135
135
shell : bash
136
136
run : |
@@ -159,6 +159,11 @@ jobs:
159
159
echo ::set-env name=HF_PFX_PASSPHRASE::${{secrets.pfx_key}}
160
160
echo "::set-env name=HF_PFX_FILE::${{runner.workspace}}\build\codesign.pfx"
161
161
fi
162
+ - name : Clear Working Directory
163
+ if : matrix.os[1] == 'windows'
164
+ shell : bash
165
+ working-directory : ${{runner.workspace}}
166
+ run : rm -rf ./*
162
167
- uses : actions/checkout@v1
163
168
with :
164
169
submodules : true
@@ -228,7 +233,7 @@ jobs:
228
233
run : |
229
234
SYMBOLS_TEMP="symbols-temp"
230
235
mkdir $SYMBOLS_TEMP
231
- find "${{runner.workspace}} /build" \( -path '*/tools/gpu-frame-player/*' -or -path '*/interface/*' -or -path '*/plugins/*' \) -regex ".*\.$SYMBOL_REGEX" -exec cp -r {} $SYMBOLS_TEMP \;
236
+ find ". /build" \( -path '*/tools/gpu-frame-player/*' -or -path '*/interface/*' -or -path '*/plugins/*' \) -regex ".*\.$SYMBOL_REGEX" -exec cp -r {} $SYMBOLS_TEMP \;
232
237
cd $SYMBOLS_TEMP
233
238
$ZIP_COMMAND $ZIP_ARGS ../${{ steps.buildenv1.outputs.symbols_archive }} .
234
239
- name : Upload Symbols
Original file line number Diff line number Diff line change @@ -56,14 +56,19 @@ jobs:
56
56
echo ::set-env name=INSTALLER_EXT::exe
57
57
echo ::set-env name=CMAKE_EXTRA::"-A x64"
58
58
fi
59
- # Configureation is broken into two steps because you can't set an env var and also reference it in the same step
59
+ # Configuration is broken into two steps because you can't set an env var and also reference it in the same step
60
60
- name : Configure Build Environment 2
61
61
shell : bash
62
62
run : |
63
63
echo "${{ steps.buildenv1.outputs.symbols_archive }}"
64
64
echo ::set-env name=ARTIFACT_PATTERN::HighFidelity-Beta-*.$INSTALLER_EXT
65
65
# Build type variables
66
66
echo ::set-env name=INSTALLER::HighFidelity-Beta-$RELEASE_NUMBER-$GIT_COMMIT_SHORT.$INSTALLER_EXT
67
+ - name : Clear Working Directory
68
+ if : matrix.os[1] == 'windows'
69
+ shell : bash
70
+ working-directory : ${{runner.workspace}}
71
+ run : rm -rf ./*
67
72
- uses : actions/checkout@v1
68
73
with :
69
74
submodules : true
You can’t perform that action at this time.
0 commit comments