Skip to content

Commit ee069cb

Browse files
arduanombms0
authored andcommitted
Alter publishing to only publish specific packages (#98)
1 parent 6021b84 commit ee069cb

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,24 @@ jobs:
1818
override: true
1919
- name: Install ALSA
2020
run: sudo apt-get install -y libasound2-dev
21-
- name: Publish
21+
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
2237
uses: katyo/publish-crates@v2
2338
with:
2439
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
40+
args: -p xsynth-realtime
2541
ignore-unpublished-changes: true

0 commit comments

Comments
 (0)