Skip to content

Commit

Permalink
Create rust-cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ImaMapleTree authored May 28, 2024
1 parent 688a7f2 commit e320676
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rust-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Rust CD

on:
release:
types: [published]

env:
CARGO_TERM_COLOR: always
CARGO_REGISTRY_TOKEN: ${{ secrets.DERIVE_CTOR_API_KEY }}

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Login
run: cargo login
- name: Deploy
run: cargo publish

0 comments on commit e320676

Please sign in to comment.