Skip to content

chore: install conventional-changelog-conventionalcommits #11

chore: install conventional-changelog-conventionalcommits

chore: install conventional-changelog-conventionalcommits #11

Workflow file for this run

name: Release
on:
push:
branches:
- ci/use-semantic-release
- master
- next
- "*.x"
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
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@v3
with:
fetch-depth: 0
token: ${{ secrets.CI_GITHUB_TOKEN }}
persist-credentials: false
- name: Setup LTS Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Download all artifacts
uses: actions/download-artifact@v3
with:
path: artifacts
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release --dry-run