Skip to content

Commit

Permalink
Alter publishing to only publish specific packages (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
arduano authored Aug 23, 2024
1 parent 708cdde commit e50f778
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,24 @@ jobs:
override: true
- name: Install ALSA
run: sudo apt-get install -y libasound2-dev
- name: Publish

- 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
uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
args: -p xsynth-realtime
ignore-unpublished-changes: true

0 comments on commit e50f778

Please sign in to comment.