mirror of
https://github.com/Diggsey/sqlxmq.git
synced 2024-11-22 16:21:01 +00:00
25 lines
485 B
YAML
25 lines
485 B
YAML
|
on:
|
||
|
release:
|
||
|
types: [published]
|
||
|
|
||
|
name: Publish
|
||
|
|
||
|
jobs:
|
||
|
release:
|
||
|
name: Release
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
profile: minimal
|
||
|
toolchain: stable
|
||
|
override: true
|
||
|
- uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: login
|
||
|
args: -- ${{secrets.CARGO_TOKEN}}
|
||
|
- uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: publish
|