Skip to content

Commit

Permalink
fix: fix not setup node env and deps issue at image action
Browse files Browse the repository at this point in the history
  • Loading branch information
EiffelFly committed Jun 30, 2022
1 parent d03e1a8 commit 56ec66d
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,18 @@ jobs:
core.setOutput('no_v_tag', no_v_tag)
- name: Checkout
uses: actions/checkout@v3
if: github.event_name == 'release'
uses: actions/checkout@3

- name: Setup node env
uses: actions/setup-node@v3
with:
node-version: 14
cache: "yarn"

- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfileme == 'release'

- name: Download airbyte icons
if: github.event_name == 'release'
Expand Down

0 comments on commit 56ec66d

Please sign in to comment.