Skip to content

Commit

Permalink
chore: fix Github action error with yarn (#3903)
Browse files Browse the repository at this point in the history
Restore action name
  • Loading branch information
ThangHuuVu authored Feb 10, 2022
1 parent 7434fb9 commit 68e412b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ jobs:
steps:
- name: Init
uses: actions/checkout@v2
- name: Setup Node & Install dependencies
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: npm run build
Expand All @@ -43,11 +44,12 @@ jobs:
steps:
- name: Init
uses: actions/checkout@v2
- name: Setup Node & Install dependencies
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Publish to npm and GitHub
run: |
Expand All @@ -65,11 +67,12 @@ jobs:
steps:
- name: Init
uses: actions/checkout@v2
- name: Setup Node & Install dependencies
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Determine version
uses: ./.github/version-pr
Expand Down

0 comments on commit 68e412b

Please sign in to comment.