Skip to content

add restore

add restore #11

Workflow file for this run

name: Release Draft Workflow
on:
push:
tags: [ v* ]
env:
CARGO_TERM_COLOR: always
jobs:
clippy_check:
uses: ./.github/workflows/checks.yml
secrets: inherit
cargo_test:
uses: ./.github/workflows/cargo-test.yml
secrets: inherit
build:
uses: ./.github/workflows/core.yml
needs: [clippy_check, cargo_test]
secrets: inherit
with:
version: ${{ github.ref_name }}