CI nightly release #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI nightly release | |
on: | |
push: | |
# any tags, including tags with / like v1.0/alpha | |
tags: | |
- '**' | |
schedule: | |
# every day at 1 AM | |
- cron: 00 1 * * * | |
workflow_dispatch: | |
jobs: | |
cargo-audit: | |
name: Security Audit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: EmbarkStudios/cargo-deny-action@v1 | |
cargo-lint: | |
uses: ./.github/workflows/clippy.yml | |
with: | |
toolchain: nightly-2024-06-09 | |
build: | |
uses: ./.github/workflows/build_all.yml | |
secrets: inherit | |
with: | |
toolchain: nightly-2024-06-09 | |
debug_or_release: release |