Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove alsa-sys publish step from cpal publish github workflow #390

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/workflows/cpal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,6 @@ jobs:
- uses: actions/checkout@v1
- name: Install alsa
run: sudo apt-get install libasound2-dev
- name: Run cargo publish for alsa-sys
continue-on-error: true
env:
MANIFEST: alsa-sys/Cargo.toml
run: |
ALSA_TMP=$(mktemp /tmp/alsa-sysXXX.txt) || echo "::error::mktemp error"
echo "::set-env name=ALSA_TMP::$ALSA_TMP"
cargo publish --token $CRATESIO_TOKEN \
--manifest-path $MANIFEST 2> $ALSA_TMP
- name: Check if alsa-sys is already published
run: |
empty=0
grep -q '[^[:space:]]' < $ALSA_TMP || empty=1
[ $empty -eq 0 ] && cat $ALSA_TMP
[ $empty -eq 1 ] || grep -q "is already uploaded" < $ALSA_TMP
- name: Run cargo publish for cpal
continue-on-error: true
run: |
Expand Down