Skip to content

Commit

Permalink
chore: use lerna to bumpversion
Browse files Browse the repository at this point in the history
  • Loading branch information
emunhoz committed Feb 17, 2022
1 parent 99b1286 commit eefff67
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,28 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16.x
registry-url: 'https://registry.npmjs.org'

- name: Config git user
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
- name: Install dependencies
run: npm install

- name: Build app
run: npm run build-app

- name: Semantic release
env:
GITHUB_TOKEN: ${{ secrets.GH_MONOREPO_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release

- name: Config git user
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
- name: Bump versions
run: |
npm run version:ci
Expand Down

2 comments on commit eefff67

@vercel
Copy link

@vercel vercel bot commented on eefff67 Feb 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on eefff67 Feb 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.