24 lines
493 B
YAML
24 lines
493 B
YAML
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
jobs:
|
||
|
publish:
|
||
|
runs-on: ubuntu-22.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Install latest stable
|
||
|
uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
toolchain: stable
|
||
|
|
||
|
- name: Publish qbittorrent-web-api-gen
|
||
|
uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: publish
|
||
|
|
||
|
# - name: Publish qbittorrent-web-api
|
||
|
# uses: actions-rs/cargo@v1
|
||
|
# with:
|
||
|
# command: publish
|
||
|
|