From 3987ae91edbd61aec9c1105e9810fdfca4fab6ce Mon Sep 17 00:00:00 2001 From: Pierre Jacquier Date: Mon, 21 Aug 2023 17:49:28 +0000 Subject: [PATCH] Fix typos --- .github/workflows/ci.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d25080896..5130d6b17 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -129,13 +129,16 @@ jobs: APPIMAGETOOL_SIGN_PASSPHRASE: ${{ secrets.APPIMAGE_GPG_PRIVATE_KEY_PASSPHRASE }} VERSION_NO_V: ${{ needs.build-test-web.outputs.version }} run: | - gpg -K - APPIMAGE_TOOL=appimagetool-x86_64.AppImage - wget https://github.com/AppImage/AppImageKit/releases/download/continuous/$APPIMAGE_TOOL - chmod a+x $APPIMAGE_TOOL + TOOL=appimagetool-x86_64.AppImage + APPIMAGE=kittycad-modeling-app_${VERSION_NO_V}_amd64.AppImage pushd src-tauri/target/release/bundle/appimage - ./$APPIMAGE_TOOL --sign kittycad-modeling-app.AppDir kittycad-modeling-app_${VERSION_NO_V}_amd64.AppImage - ls -l + rm $APPIMAGE + wget https://github.com/AppImage/AppImageKit/releases/download/continuous/$TOOL + chmod a+x $TOOL + gpg -K + ./$TOOL --sign kittycad-modeling-app.AppDir $APPIMAGE + chmod a+x $APPIMAGE + ./$APPIMAGE --appimage-signature popd - uses: actions/upload-artifact@v3 @@ -204,10 +207,10 @@ jobs: path: artifact glob: '*/kittycad-modeling-app*' parent: false - destination: dl.kittycad.io/releases/modeling-app/v${{ env.VERSION_NO_V }} + iAPPIMAGEnation: dl.kittycad.io/releases/modeling-app/v${{ env.VERSION_NO_V }} - name: Upload update endpoint to public bucket uses: google-github-actions/upload-cloud-storage@v1.0.3 with: path: last_update.json - destination: dl.kittycad.io/releases/modeling-app + iAPPIMAGEnation: dl.kittycad.io/releases/modeling-app