Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 3 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,27 +33,23 @@ jobs:
- uses: dtolnay/rust-toolchain@stable

- name: Publish dbrest-core
run: cargo publish -p dbrest-core
run: cargo publish -p dbrest-core --allow-dirty
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

- name: Wait for crates.io index update
run: sleep 30

- name: Publish dbrest-postgres
run: cargo publish -p dbrest-postgres
run: cargo publish -p dbrest-postgres --allow-dirty
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

- name: Publish dbrest-sqlite
run: cargo publish -p dbrest-sqlite
run: cargo publish -p dbrest-sqlite --allow-dirty
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

- name: Wait for crates.io index update
run: sleep 30

- name: Publish dbrest
run: cargo publish -p dbrest
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Loading
Loading