mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
52 lines
1.7 KiB
YAML
52 lines
1.7 KiB
YAML
name: Prepare Release Crates
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check:
|
|
name: Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1
|
|
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
|
|
with:
|
|
cache-key: warm
|
|
tools: cargo-release-oxc
|
|
- run: cargo ck
|
|
- run: cargo release-oxc publish --release crates --dry-run
|
|
|
|
prepare:
|
|
needs: check
|
|
name: Prepare Release Crates
|
|
uses: ./.github/workflows/reusable_prepare_release.yml
|
|
with:
|
|
name: crates
|
|
secrets:
|
|
OXC_BOT_PAT: ${{ secrets.OXC_BOT_PAT }}
|
|
|
|
ecosystem-ci:
|
|
needs: prepare
|
|
name: Trigger Monitor Oxc
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1
|
|
|
|
- uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
|
|
id: comment
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
issue-number: ${{ needs.prepare.outputs.pull-request-number }}
|
|
body: Triggering Monitor Oxc https://github.com/oxc-project/monitor-oxc/actions/workflows/ci.yml
|
|
|
|
- uses: benc-uk/workflow-dispatch@e2e5e9a103e331dad343f381a29e654aea3cf8fc # v1.2.4
|
|
with:
|
|
repo: oxc-project/monitor-oxc
|
|
workflow: ci.yml
|
|
token: ${{ secrets.OXC_BOT_PAT }}
|
|
ref: main
|
|
inputs: '{ "issue-number": "${{ needs.prepare.outputs.pull-request-number }}", "comment-id": "${{ steps.comment.outputs.comment-id }}" }'
|