mirror of
https://github.com/GyulyVGC/sniffnet.git
synced 2026-08-02 19:04:26 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
308 B
YAML
17 lines
308 B
YAML
name: Crates
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
crates:
|
|
runs-on: macos-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
|
|
- name: Publish to crates.io
|
|
run: cargo publish --token ${{ secrets.CRATES_TOKEN }}
|