From a12f1321c77c23ee04eb40f277cc1dba9cb6fe2b Mon Sep 17 00:00:00 2001 From: nym21 Date: Fri, 18 Apr 2025 18:59:53 +0200 Subject: [PATCH] dist: fix format tag version --- .github/workflows/release.yml | 3 +-- Cargo.toml | 7 +------ 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 270a10a3e..3ae24e036 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,11 +39,10 @@ permissions: # If there's a prerelease-style suffix to the version, then the release(s) # will be marked as a prerelease. on: - workflow_dispatch: pull_request: push: tags: - - "**[0-9]+.[0-9]+.[0-9]+*" + - '**[0-9]+.[0-9]+.[0-9]+*' jobs: # Run 'dist plan' (or host) to determine what tasks we need to do diff --git a/Cargo.toml b/Cargo.toml index b24a5fa47..33a79f7da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,10 +59,5 @@ ci = "github" # The installers to generate for each app installers = [] # Target platforms to build apps for (Rust target-triple syntax) -targets = [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-unknown-linux-gnu", -] +targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"] github-custom-runners.global = "ubuntu-latest"