chore: add release workflow (#18) #78
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 | |
on: [push, pull_request] | |
jobs: | |
rust: | |
name: deno_config-${{ matrix.os }} | |
if: | | |
(github.event_name == 'push' || !startsWith(github.event.pull_request.head.label, 'denoland:')) | |
&& github.ref_name != 'deno_config' | |
&& !startsWith(github.ref, 'refs/tags/deno/') | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
os: [macOS-latest, ubuntu-latest, windows-2019] | |
env: | |
CARGO_INCREMENTAL: 0 | |
GH_ACTIONS: 1 | |
RUST_BACKTRACE: full | |
RUSTFLAGS: -D warnings | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: dsherret/rust-toolchain-file@v1 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Format | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
cargo fmt -- --check | |
- name: Cargo test | |
run: cargo test --locked --release --all-features --bins --tests --examples | |
- name: Lint | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
cargo clippy --locked --all-features --all-targets -- -D clippy::all | |
- name: Cargo publish | |
if: | | |
contains(matrix.os, 'ubuntu') && | |
github.repository == 'denoland/deno_config' && | |
startsWith(github.ref, 'refs/tags/') | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
run: cargo publish | |
- name: Get tag version | |
if: contains(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags/') | |
id: get_tag_version | |
run: echo ::set-output name=TAG_VERSION::${GITHUB_REF/refs\/tags\//} | |