This commit is contained in:
parent
7a6598bf8f
commit
02c7379972
43
.gitea/workflows/build-publish.yml
Normal file
43
.gitea/workflows/build-publish.yml
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
name: Rust-build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "main"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: catthehacker/ubuntu:act-latest
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Check-out
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install stable toolchain
|
||||||
|
uses: https://github.com/actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: stable
|
||||||
|
override: true
|
||||||
|
|
||||||
|
- name: Run cargo check
|
||||||
|
uses: https://github.com/actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: check
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
run: cargo test
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: cargo build --release
|
||||||
|
|
||||||
|
- name: Configure cargo
|
||||||
|
run: echo ${{ secrets.API_TOKEN_CONFIG }} >> ~/.cargo/credentials.toml
|
||||||
|
run: echo ${{ secrets.CARGO_CONFIG }} >> ~/.cargo/config.toml
|
||||||
|
|
||||||
|
- name: Publish
|
||||||
|
run: cargo publish
|
||||||
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user