Skip to content

Commit bd6d5a9

Browse files
committed
Fix publish workflow
1 parent 01d8422 commit bd6d5a9

4 files changed

Lines changed: 5 additions & 16 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,12 @@ jobs:
1616
with:
1717
toolchain: nightly
1818
override: true
19+
1920
- name: Install ALSA
2021
run: sudo apt-get install -y libasound2-dev
2122

22-
- name: Publish xsynth-soundfonts
23-
uses: katyo/publish-crates@v2
24-
with:
25-
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
26-
args: -p xsynth-soundfonts
27-
ignore-unpublished-changes: true
28-
29-
- name: Publish xsynth-core
30-
uses: katyo/publish-crates@v2
31-
with:
32-
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
33-
args: -p xsynth-core
34-
ignore-unpublished-changes: true
35-
36-
- name: Publish xsynth-realtime
23+
- name: Publish
3724
uses: katyo/publish-crates@v2
3825
with:
3926
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
40-
args: -p xsynth-realtime
4127
ignore-unpublished-changes: true

clib/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "xsynth-clib"
33
description = "C/C++ bindings for XSynth"
44
authors = ["MBMS"]
55
readme = "README.md"
6+
publish = false
67

78
version.workspace = true
89
edition.workspace = true

kdmapi/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "xsynth-kdmapi"
33
description = "A cdylib wrapper around XSynth to act as a drop in replacement for OmniMIDI/KDMAPI."
44
authors = ["Kaydax", "Arduano", "MBMS"]
55
readme = "README.md"
6+
publish = false
67

78
version.workspace = true
89
edition.workspace = true

render/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "xsynth-render"
33
description = "A command line utility for rendering MIDIs to audio using XSynth."
44
authors = ["Arduano", "MBMS"]
55
readme = "README.md"
6+
publish = false
67

78
version.workspace = true
89
edition.workspace = true

0 commit comments

Comments
 (0)