sqlxmq 0.6.0

A reliable job queue using PostgreSQL as a backing store
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
on:
  release:
    types: [published]

name: Publish

jobs:
  release:
    name: Release
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - run: cargo login ${{secrets.CARGO_TOKEN}}
      - run: cargo publish --manifest-path sqlxmq_macros/Cargo.toml
      - name: Wait for crates.io to update
        run: sleep 30
      - run: cargo publish --manifest-path Cargo.toml