Skip to content

Commit

Permalink
Fix publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MyBlackMIDIScore committed Aug 25, 2024
1 parent 01d8422 commit bd6d5a9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 16 deletions.
18 changes: 2 additions & 16 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,12 @@ jobs:
with:
toolchain: nightly
override: true

- name: Install ALSA
run: sudo apt-get install -y libasound2-dev

- name: Publish xsynth-soundfonts
uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
args: -p xsynth-soundfonts
ignore-unpublished-changes: true

- name: Publish xsynth-core
uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
args: -p xsynth-core
ignore-unpublished-changes: true

- name: Publish xsynth-realtime
- name: Publish
uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
args: -p xsynth-realtime
ignore-unpublished-changes: true
1 change: 1 addition & 0 deletions clib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "xsynth-clib"
description = "C/C++ bindings for XSynth"
authors = ["MBMS"]
readme = "README.md"
publish = false

version.workspace = true
edition.workspace = true
Expand Down
1 change: 1 addition & 0 deletions kdmapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "xsynth-kdmapi"
description = "A cdylib wrapper around XSynth to act as a drop in replacement for OmniMIDI/KDMAPI."
authors = ["Kaydax", "Arduano", "MBMS"]
readme = "README.md"
publish = false

version.workspace = true
edition.workspace = true
Expand Down
1 change: 1 addition & 0 deletions render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "xsynth-render"
description = "A command line utility for rendering MIDIs to audio using XSynth."
authors = ["Arduano", "MBMS"]
readme = "README.md"
publish = false

version.workspace = true
edition.workspace = true
Expand Down

0 comments on commit bd6d5a9

Please sign in to comment.