mirror of
https://github.com/Atsukoro1/ponyfetch.git
synced 2024-11-23 20:57:59 +01:00
20 lines
No EOL
376 B
YAML
20 lines
No EOL
376 B
YAML
name: Publish
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- stable
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
override: true
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: publish
|
|
args: --token ${{ secrets.CARGO_TOKEN }} |