Skip to content

build(deps): bump indexmap from 2.6.0 to 2.7.0 (#339) #170

build(deps): bump indexmap from 2.6.0 to 2.7.0 (#339)

build(deps): bump indexmap from 2.6.0 to 2.7.0 (#339) #170

Workflow file for this run

name: Release
env:
HUSKY: 0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
on:
push:
branches:
- master
- next
- alpha
- '*.x'
permissions:
contents: read
jobs:
build_and_test:
uses: ./.github/workflows/build-and-test.yml
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
needs:
- build_and_test
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.CI_GITHUB_TOKEN }}
persist-credentials: false
- name: Setup LTS Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Move artifacts
run: npm run artifacts
- name: List packages
run: ls -R ./npm
shell: bash
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release