mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
name: cargo_publish
|
|
|
|
on: workflow_dispatch
|
|
|
|
# Ensures only one publish is running at a time
|
|
concurrency:
|
|
group: ${{ github.workflow }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
name: cargo publish
|
|
runs-on: ubuntu-24.04-xl
|
|
timeout-minutes: 90
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
RUST_BACKTRACE: full
|
|
RUSTC_FORCE_INCREMENTAL: 1
|
|
|
|
steps:
|
|
- name: Configure git
|
|
run: |
|
|
git config --global core.symlinks true
|
|
git config --global fetch.parallel 32
|
|
|
|
- name: Clone repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.DENOBOT_PAT }}
|
|
submodules: recursive
|
|
|
|
- uses: dsherret/rust-toolchain-file@v1
|
|
|
|
- name: Install deno
|
|
uses: denoland/setup-deno@v2
|
|
with:
|
|
deno-version: v1.x
|
|
|
|
- name: Publish
|
|
env:
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
run: ./tools/release/03_publish_crates.ts
|
|
|
|
- name: Create release tag and check forward commit to main
|
|
env:
|
|
# the default secrets.GITHUB_TOKEN won't trigger a workflow run
|
|
# when tagging, but it will if we provide a custom PAT
|
|
GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }}
|
|
GH_WORKFLOW_ACTOR: ${{ github.actor }}
|
|
run: |
|
|
git config user.email "${{ github.actor }}@users.noreply.github.com"
|
|
git config user.name "${{ github.actor }}"
|
|
./tools/release/04_post_publish.ts
|