mirror of https://github.com/Trivernis/bromine.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
419 B
YAML
26 lines
419 B
YAML
3 years ago
|
name: Publish a release
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ main ]
|
||
|
env:
|
||
|
CARGO_TERM_COLOR: always
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Run tests
|
||
|
run: cargo test --verbose
|
||
|
|
||
|
- name: Login
|
||
|
with:
|
||
|
crates_io_token: ${{secrets.CRATES_IO_TOKEN}}
|
||
|
run: cargo login
|
||
|
|
||
|
- name: Publish to crates.io
|
||
|
run: cargo publish
|