jobserver 0.1.34

An implementation of the GNU Make jobserver for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
on:
  push:
    tags:
      - "*"

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Publish to crates.io
        run: |
          cargo publish
        env:
          CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}