mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
4a64a64b9e
Signed-off-by: StepSecurity Bot <bot@stepsecurity.io> Co-authored-by: Daniel Roe <daniel@roe.dev>
66 lines
2.0 KiB
YAML
66 lines
2.0 KiB
YAML
name: release
|
|
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
env:
|
|
# 7 GiB by default on GitHub, setting to 6 GiB
|
|
NODE_OPTIONS: --max-old-space-size=6144
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
release-pr:
|
|
if: ${{ github.event.issue.pull_request && github.event.comment.body == '/trigger release' }}
|
|
permissions:
|
|
id-token: write
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
|
|
steps:
|
|
- name: Ensure action is by maintainer
|
|
uses: octokit/request-action@352d2ae93e1805721b5fe308598555ba3bd2c8e2 # v2.x
|
|
id: check_role
|
|
with:
|
|
route: GET /repos/nuxt/nuxt/collaborators/${{ github.event.comment.user.login }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
with:
|
|
ref: refs/pull/${{ github.event.issue.number }}/merge
|
|
fetch-depth: 0
|
|
|
|
- run: corepack enable
|
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
|
with:
|
|
node-version: 20
|
|
cache: "pnpm"
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Build
|
|
run: pnpm build
|
|
|
|
- name: Release Edge
|
|
run: ./scripts/release-edge.sh pr-${{ github.event.issue.number }}
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
|
|
NPM_CONFIG_PROVENANCE: true
|
|
|
|
- name: Post comment
|
|
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
script: |
|
|
github.rest.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: `:rocket: Release triggered! You can now install [nuxt@npm:nuxt3@pr-${{ github.event.issue.number }}](https://www.npmjs.com/package/nuxt3/v/pr-${{ github.event.issue.number }})`
|
|
})
|