Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tajespasarela committed Feb 27, 2023
1 parent 02339bf commit aa61441
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/actions/release-alpha/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
description: Token to push code to github
required: true
runs:
using: "composite"
using: 'composite'
steps:
- name: Configure git user
run: |
Expand All @@ -25,7 +25,9 @@ runs:
NPM_TOKEN: ${{ inputs.npm_token }}

- name: Publish release
run: pnpm run release:alpha
run: |
git restore ./pnpm-lock.yaml
pnpm run release:alpha
shell: bash

- name: Push tags
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
restore-keys: lerna-cache-

- name: install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install

- name: lint packages
run: pnpm run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
version: 7

- name: install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install

- name: lint packages
run: pnpm run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
version: 7

- name: install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install

- name: lint packages
run: pnpm run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
version: 7

- name: install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install

- name: lint packages
run: pnpm run lint
Expand Down
1 change: 1 addition & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"version": "independent",
"ignoreChanges": ["pnpm-lock.yaml"],
"changelogPreset": {
"name": "conventionalcommits",
"issuePrefixes": ["EX-"],
Expand Down

0 comments on commit aa61441

Please sign in to comment.