From 6fb417fda6a60f7429273e0ebc7f121629f5b1bc Mon Sep 17 00:00:00 2001 From: Christopher Kolstad Date: Mon, 15 Jan 2024 19:28:13 +0100 Subject: [PATCH] fix: revert upload-artifact to v3 to avoid a uniqueness issue we haven't dealt with --- .github/workflows/release.yml | 10 +++++----- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7aa8f009..226a1b24 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -74,7 +74,7 @@ jobs: cat dist-manifest.json echo "manifest=$(jq -c "." dist-manifest.json)" >> "$GITHUB_OUTPUT" - name: "Upload dist-manifest.json" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: artifacts path: dist-manifest.json @@ -137,7 +137,7 @@ jobs: cp dist-manifest.json "$BUILD_MANIFEST_NAME" - name: "Upload artifacts" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: artifacts path: | @@ -178,7 +178,7 @@ jobs: cp dist-manifest.json "$BUILD_MANIFEST_NAME" - name: "Upload artifacts" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: artifacts path: | @@ -218,13 +218,13 @@ jobs: cat dist-manifest.json echo "manifest=$(jq -c "." dist-manifest.json)" >> "$GITHUB_OUTPUT" - name: "Upload dist-manifest.json" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: artifacts path: dist-manifest.json # Create a Github Release while uploading all files to it - announce: + upload_artifacts: needs: - plan - host diff --git a/Cargo.lock b/Cargo.lock index ad626a06..caf90f71 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -21,9 +21,9 @@ dependencies = [ [[package]] name = "actix-cors" -version = "0.7.0" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9e772b3bcafe335042b5db010ab7c09013dad6eac4915c91d8d50902769f331" +checksum = "0346d8c1f762b41b458ed3145eea914966bb9ad20b9be0d6d463b20d45586370" dependencies = [ "actix-utils", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index f45e995d..39d72dd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ cargo-dist-version = "0.7.1" # CI backends to support ci = ["github"] # Target platforms to build apps for (Rust target-triple syntax) -targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"] +targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-pc-windows-msvc"] # The installers to generate for each app installers = ["shell", "msi"] # Publish jobs to run in CI