Skip to content

Commit

Permalink
chore: adds both debug and release binaries to the extension package
Browse files Browse the repository at this point in the history
  • Loading branch information
OctoD committed May 27, 2024
1 parent 89e1969 commit 4e099cb
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Build
- name: Build debug
run: cargo build --verbose
- name: Build release
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
Expand All @@ -35,7 +37,9 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Build
- name: Build debug
run: cargo build --verbose
- name: Build release
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
Expand All @@ -54,7 +58,9 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Build
- name: Build debug
run: cargo build --verbose
- name: Build release
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
Expand Down

0 comments on commit 4e099cb

Please sign in to comment.