From 621e500190ead16bea2ffb7b74a095c676115571 Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Thu, 17 Sep 2020 00:49:31 +0200 Subject: [PATCH] Formatting --- .github/workflows/ci.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 09789a18f..929094a76 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -154,7 +154,10 @@ jobs: 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 -X POST -F symfile=@olive-editor.sym -F key="%GH_AUTH_KEY%" https://olivevideoeditor.org/crashpad/symbols.php + curl -X POST \ + -F symfile=@olive-editor.sym \ + -F key="%GH_AUTH_KEY%" \ + https://olivevideoeditor.org/crashpad/symbols.php - name: Upload Installer to Nightly Page shell: bash @@ -162,7 +165,8 @@ jobs: env: GH_AUTH_KEY: ${{ secrets.GH_AUTH_KEY }} run: | - curl -X POST -F file=@$PKGNAME.exe \ + curl -X POST \ + -F file=@$PKGNAME.exe \ -F key="$GH_AUTH_KEY" \ -F hash="$GITHUB_SHA" \ -F time="$(git -C $GITHUB_WORKSPACE show -s --format=%ct)" \ @@ -175,7 +179,8 @@ jobs: env: GH_AUTH_KEY: ${{ secrets.GH_AUTH_KEY }} run: | - curl -X POST -F file=@$PKGNAME.zip \ + curl -X POST \ + -F file=@$PKGNAME.zip \ -F key="$GH_AUTH_KEY" \ -F hash="$GITHUB_SHA" \ -F time="$(git -C $GITHUB_WORKSPACE show -s --format=%ct)" \