Skip to content

Commit

Permalink
qf: github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ph0enixKM committed Jun 16, 2024
1 parent bc1e5c3 commit a7c2b47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ on:
push:
tags:
- '**[0-9]+.[0-9]+.[0-9]+*'
pull_request:

jobs:
# Run 'cargo dist plan' (or host) to determine what tasks we need to do
Expand Down Expand Up @@ -126,12 +125,6 @@ jobs:
- name: Install dependencies
run: |
${{ matrix.packages_install }}
- name: Install MUSL dependencies
if: contains(matrix.targets, 'x86_64-unknown-linux-musl')
run: |
rustup target add x86_64-unknown-linux-musl
sudo apt-get update
sudo apt-get install -y musl-tools musl-dev
- name: Build artifacts
run: |
# Actually do builds and make zips and whatnot
Expand Down Expand Up @@ -273,6 +266,6 @@ jobs:
tag: ${{ needs.plan.outputs.tag }}
name: ${{ fromJson(needs.host.outputs.val).announcement_title }}
body: ${{ fromJson(needs.host.outputs.val).announcement_github_body }}
prerelease: ${{ fromJson(needs.host.outputs.val).announcement_is_prerelease }}
artifacts: "artifacts/*"
allowUpdates: true
prerelease: false
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl"]
# Publish jobs to run in CI
pr-run-mode = "plan"
pr-run-mode = "skip"
# Allow modifying release.yml
allow-dirty = ["ci"]

0 comments on commit a7c2b47

Please sign in to comment.