2022-03-30 16:37:00 -04:00
|
|
|
name: cargo_publish
|
|
|
|
|
|
|
|
on: workflow_dispatch
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: cargo publish
|
|
|
|
runs-on: ubuntu-20.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
|
2022-11-06 10:56:21 -05:00
|
|
|
uses: actions/checkout@v3
|
2022-03-30 16:37:00 -04:00
|
|
|
with:
|
2022-04-08 12:32:25 -04:00
|
|
|
token: ${{ secrets.DENOBOT_PAT }}
|
2022-03-30 16:37:00 -04:00
|
|
|
submodules: recursive
|
|
|
|
|
2023-03-10 05:55:51 -05:00
|
|
|
- uses: dsherret/rust-toolchain-file@v1
|
2022-03-30 16:37:00 -04:00
|
|
|
|
|
|
|
- name: Install deno
|
|
|
|
uses: denoland/setup-deno@v1
|
|
|
|
with:
|
2022-07-02 00:22:07 -04:00
|
|
|
# use a recent version instead of the latest version in case
|
|
|
|
# the latest version ever has issues that breaks publishing
|
|
|
|
deno-version: v1.23.2
|
2022-03-30 16:37:00 -04:00
|
|
|
|
|
|
|
- name: Publish
|
|
|
|
env:
|
|
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
2022-07-19 16:35:58 -04:00
|
|
|
run: ./tools/release/03_publish_crates.ts
|
2022-03-30 16:37:00 -04:00
|
|
|
|
2022-04-04 14:56:29 -04:00
|
|
|
- name: Create release tag and check forward commit to main
|
2022-03-30 16:37:00 -04:00
|
|
|
env:
|
2022-04-08 12:32:25 -04:00
|
|
|
# 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 }}
|
2022-04-04 14:56:29 -04:00
|
|
|
GH_WORKFLOW_ACTOR: ${{ github.actor }}
|
|
|
|
run: |
|
2022-04-20 21:50:16 -04:00
|
|
|
git config user.email "${{ github.actor }}@users.noreply.github.com"
|
|
|
|
git config user.name "${{ github.actor }}"
|
2022-04-04 14:56:29 -04:00
|
|
|
./tools/release/04_post_publish.ts
|