Skip to content

Commit

Permalink
Fix publish step
Browse files Browse the repository at this point in the history
  • Loading branch information
Diggsey committed Mar 29, 2021
1 parent c767c10 commit 4edf492
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,10 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: publish
args: --manifest-path sqlxmq_macros/Cargo.toml
- name: Wait for crates.io to update
run: sleep 30
- uses: actions-rs/cargo@v1
with:
command: publish
args: --manifest-path Cargo.toml
6 changes: 5 additions & 1 deletion sqlxmq_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@ name = "sqlxmq_macros"
version = "0.1.0"
authors = ["Diggory Blake <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Diggsey/sqlxmq"
description = "Procedural macros for sqlxmq"
readme = "../README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true

[dependencies]
syn = { version = "1.0.64", features = ["derive"] }
syn = { version = "1.0.64", features = ["full"] }
quote = "1.0.9"

0 comments on commit 4edf492

Please sign in to comment.