Skip to content

build(deps-dev): bump @vercel/ncc from 0.36.1 to 0.38.0 (#64) #44

build(deps-dev): bump @vercel/ncc from 0.36.1 to 0.38.0 (#64)

build(deps-dev): bump @vercel/ncc from 0.36.1 to 0.38.0 (#64) #44

Workflow file for this run

name: release
on:
push:
branches:
- main
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "lts/*"
- run: npm ci
- run: npm run build
- run: rm .gitignore # dist/ folder is ignored by default
- run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add .gitignore dist/
git commit -m "build"
git push --force https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git HEAD:refs/heads/v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}