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.
13 lines
403 B
YAML
13 lines
403 B
YAML
2 years ago
|
name: Publish Cargo package
|
||
|
run-name: ${{ github.actor }} is building ${{ github.repository }}
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
Publish-Cargo:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Install Rust
|
||
|
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Publish
|
||
|
run: cargo run -r
|