Skip to content

Commit

Permalink
Fix publishing of liblisa-x64-observer
Browse files Browse the repository at this point in the history
Cargo always sees the `bootdisk.img` file as 'not committed to git'.
We pass the --allow-dirty flag to make cargo ignore this.
  • Loading branch information
jxors committed Aug 30, 2024
1 parent c838ae4 commit 16d3c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Package (liblisa-x64-observer-shmqueue)
run: ./crates.io_version_check.sh liblisa-x64-observer-shmqueue || cargo publish -p liblisa-x64-observer-shmqueue --token ${{ secrets.CRATES_IO_API_TOKEN }}
- name: Package (liblisa-x64-observer)
run: ./crates.io_version_check.sh liblisa-x64-observer || cargo publish -p liblisa-x64-observer --token ${{ secrets.CRATES_IO_API_TOKEN }}
run: ./crates.io_version_check.sh liblisa-x64-observer || cargo publish -p liblisa-x64-observer --token ${{ secrets.CRATES_IO_API_TOKEN }} --allow-dirty
- name: Package (liblisa-enc)
run: ./crates.io_version_check.sh liblisa-enc || cargo publish -p liblisa-enc --token ${{ secrets.CRATES_IO_API_TOKEN }}
- name: Package (liblisa-synth)
Expand Down

0 comments on commit 16d3c94

Please sign in to comment.