Skip to content

Commit

Permalink
manual release activation
Browse files Browse the repository at this point in the history
  • Loading branch information
zbrachinara committed Dec 21, 2022
1 parent 39baeb3 commit efaa2cd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
tags:
- '*'
workflow_dispatch

env:
binary: quicksweeper
Expand Down Expand Up @@ -32,7 +33,7 @@ jobs:
- name: Build
run: |
cargo build --release --target wasm32-unknown-unknown
cargo build --release --no-default-features --target wasm32-unknown-unknown
- name: Prepare package
run: |
Expand Down Expand Up @@ -79,7 +80,7 @@ jobs:
- name: Build
run: |
cargo build --release --target x86_64-unknown-linux-gnu
cargo build --release --no-default-features --target x86_64-unknown-linux-gnu
- name: Prepare package
run: |
Expand Down Expand Up @@ -124,7 +125,7 @@ jobs:

- name: Build
run: |
cargo build --release --target x86_64-pc-windows-msvc
cargo build --release --no-default-features --target x86_64-pc-windows-msvc
- name: Prepare package
run: |
Expand Down Expand Up @@ -172,7 +173,7 @@ jobs:
- name: Build
run: |
cargo build --release --target x86_64-apple-darwin
cargo build --release --no-default-features --target x86_64-apple-darwin
- name: Prepare Package
run: |
Expand Down

0 comments on commit efaa2cd

Please sign in to comment.