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.
35 lines
1.0 KiB
YAML
35 lines
1.0 KiB
YAML
name: Publish Cargo package
|
|
run-name: ${{ github.actor }} is building ${{ github.repository }}
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
Publish-Cargo:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
|
|
- run: echo "This job is now running on a ${{ runner.os }}."
|
|
- run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
|
|
|
|
- name: Install minimal Rust
|
|
uses: https://github.com/actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
profile: minimal
|
|
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Publish
|
|
uses: https://github.com/actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --release --all-features
|
|
|
|
- name: Run
|
|
uses: https://github.com/actions-rs/cargo@v1
|
|
with:
|
|
command: run
|
|
args: -r |