From 7467b96c2efe02e8a3642a4b9b6203ec7c572105 Mon Sep 17 00:00:00 2001 From: Nikita Galaiko Date: Mon, 20 Feb 2023 16:06:08 +0100 Subject: [PATCH] hardcode release dir --- .github/workflows/publish.yaml | 1 - scripts/release.sh | 10 ++-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 12d7a37ac..efc91744d 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -51,7 +51,6 @@ jobs: run: | ./scripts/release.sh \ --sign \ - --dist "./release" \ --version "${{ env.version }}" \ --tauri-private-key "${{ secrets.TAURI_PRIVATE_KEY }}" \ --tauri-key-password "${{ secrets.TAURI_KEY_PASSWORD }}" \ diff --git a/scripts/release.sh b/scripts/release.sh index ba28778a4..bba168e00 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -24,7 +24,6 @@ function help() { echo 1>&$to echo "flags:" 1>&$to echo " --version release version." 1>&$to - echo " --dist path to store artifacts in." 1>&$to echo " --tauri-private-key path or string of tauri updater private key." 1>&$to echo " --tauri-key-password password for tauri updater private key." 1>&$to echo " --apple-certificate base64 string of the .p12 certificate, exported from the keychain." 1>&$to @@ -76,7 +75,7 @@ function arch() { ARCH="$(arch)" OS="$(os)" -DIST="release/$OS/$ARCH" +DIST="release" function tauri() { pushd "$PWD/.." >/dev/null @@ -95,11 +94,6 @@ while [[ $# -gt 0 ]]; do shift shift ;; - --dist) - DIST="$2" - shift - shift - ;; --tauri-private-key) TAURI_PRIVATE_KEY="$2" shift @@ -171,6 +165,7 @@ info "building:" info " version: $VERSION" info " os: $OS" info " arch: $ARCH" +info " dist: $DIST" TMP_DIR="$(mktemp -d)" trap "rm -rf '$TMP_DIR'" exit @@ -187,7 +182,6 @@ MACOS_UPDATER="$(find "$BUNDLE_DIR/macos" -depth 1 -type f -name "*.tar.gz")" MACOS_UPDATER_SIG="$(find "$BUNDLE_DIR/macos" -depth 1 -type f -name "*.tar.gz.sig")" RELEASE_DIR="$DIST/$OS/$ARCH" -mkdir -p "$RELEASE_DIR" cp "$MACOS_DMG" "$RELEASE_DIR" cp "$MACOS_UPDATER" "$RELEASE_DIR" cp "$MACOS_UPDATER_SIG" "$RELEASE_DIR"