8000 build(deps): bump elliptic from 6.6.0 to 6.6.1 · clappr/clappr@4c5154c · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Release

Release #20

Workflow file for this run

name: Release
on:
workflow_run:
workflows: ["CI"]
branches: [main]
types:
- completed
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git config user.name github-actions[bot]
- run: git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: https://registry.npmjs.org
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: yarn release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0