ci: use auth key on symbol upload

This commit is contained in:
itsmattkc
2020-09-16 18:47:53 +10:00
committed by GitHub
parent 0d7a177ea1
commit 0c89e59585
+1 -1
View File
@@ -111,7 +111,7 @@ jobs:
- name: Export Crashpad Symbols and Upload To Server
working-directory: ${{runner.workspace}}/build
shell: cmd
run: curl -fLSs --retry 3 https://github.com/google/breakpad/blob/master/src/tools/windows/binaries/dump_syms.exe?raw=true > dump_syms.exe && dump_syms app\olive-editor.pdb > olive-editor.sym && curl -F symfile=@olive-editor.sym https://olivevideoeditor.org/crashpad/symbols.php
run: curl -fLSs --retry 3 https://github.com/google/breakpad/blob/master/src/tools/windows/binaries/dump_syms.exe?raw=true > dump_syms.exe && dump_syms app\olive-editor.pdb > olive-editor.sym && curl -F symfile=@olive-editor.sym -F key=%GH_AUTH_KEY% https://olivevideoeditor.org/crashpad/symbols.php
- name: Upload Installer Artifact
uses: actions/upload-artifact@v2