Fix pipeline

This commit is contained in:
minibits-cash
2024-10-03 16:13:08 +02:00
parent c040f1a28d
commit 4b26481b64
3 changed files with 17 additions and 11 deletions
+9 -6
View File
@@ -98,16 +98,19 @@ jobs:
echo MINIBITS_MINT_URL='https://mint.minibits.cash/Bitcoin' >> .env
echo COMMIT='${{ env.COMMIT_HASH }}' >> .env
# Install dependecies from package.json
# Install dependecies from package.json
- name: Setup yarn
if: ${{ env.IS_VERSION_CHANGED == 'true' }}
run: corepack enable
if: ${{ env.IS_VERSION_CHANGED == 'true' }}
run: |-
corepack enable
corepack prepare yarn@3.6.4 --activate
yarn set version 3.6.4
- name: Install app dependencies
if: ${{ env.IS_VERSION_CHANGED == 'true' }}
uses: bahmutov/npm-install@v1.10.2
# with:
# install-command: 'yarn install'
with:
install-command: yarn
- name: Apply patches
if: ${{ env.IS_VERSION_CHANGED == 'true' }}