ci: Use GITHUB_OUTPUT envvar instead of set-output command #346
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_emit-${{ matrix.os }} | |
if: | | |
github.event_name == 'push' || | |
!startsWith(github.event.pull_request.head.label, 'denoland:') | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
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: Install up Deno | |
uses: denoland/setup-deno@v1 | |
- name: Format | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
cargo fmt -- --check | |
deno fmt --check | |
- name: Lint | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
cargo clippy --locked --release --all-features --all-targets -- -D clippy::all | |
deno lint | |
- name: Build | |
run: deno task build | |
- name: Test | |
run: | | |
cargo test --locked --release --all-features --all-targets | |
deno task test | |
- name: Cargo publish | |
if: | | |
contains(matrix.os, 'ubuntu') && | |
github.repository == 'denoland/deno_emit' && | |
startsWith(github.ref, 'refs/tags/') | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
run: | | |
cargo publish -p deno_emit -vv | |
- name: Get tag version | |
if: contains(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags/') | |
id: get_tag_version | |
run: echo TAG_VERSION=${GITHUB_REF/refs\/tags\//} >> "$GITHUB_OUTPUT" | |
- name: Publish deno.land/x | |
uses: denoland/publish-folder@82ce065074e7174baf444332c4b7c40869a4909a | |
if: contains(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags/') | |
with: | |
folder: js | |
branch: deno_registry | |
tag: deno/${{ steps.get_tag_version.outputs.TAG_VERSION }} | |
token: ${{ secrets.DENOBOT_PAT }} | |
git-user-name: denobot | |
git-user-email: [email protected] |