Nuxt [Release] #23
This file contains hidden or 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: Nuxt [Release] | |
env: | |
node_version: 20 | |
changelog_user: Github CI | |
changelog_email: [email protected] | |
NODE_AUTH_TOKEN: ${{ secrets.npm_token }} | |
NODE_REGISTRY: https://registry.npmjs.org/ # setup credentials for npm | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # pass token to generate changelog | |
concurrency: | |
group: nuxt-laravel-echo-release | |
cancel-in-progress: false | |
permissions: | |
contents: write | |
id-token: write | |
on: | |
workflow_dispatch: # manual trigger | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.node_version }} | |
- name: Enable corepack | |
run: corepack enable | |
# Issue: https://github.com/cypress-io/github-action/issues/1355 | |
- name: Set alternate npm integrity keys | |
run: | | |
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV | |
- name: Install dependencies | |
run: npx nypm@latest i | |
- name: Prepare stubs | |
run: pnpm dev:prepare | |
- name: Validate package | |
run: pnpm validate | |
publish: | |
runs-on: ubuntu-latest | |
needs: lint | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # fetch all history for tags | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.node_version }} | |
registry-url: ${{ env.NODE_REGISTRY }} | |
- name: Enable corepack | |
run: corepack enable | |
# Issue: https://github.com/cypress-io/github-action/issues/1355 | |
- name: Set alternate npm integrity keys | |
run: | | |
echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV | |
- name: Install dependencies | |
run: npx nypm@latest i | |
- name: Prepare stubs | |
run: pnpm dev:prepare | |
- name: Build | |
run: pnpm prepack | |
- name: Generate changelog and publish release | |
run: | | |
git config --global user.name "${{ env.changelog_user }}" | |
git config --global user.email "${{ env.changelog_email }}" | |
pnpm changelogen --release --push --publish |