This commit is contained in:
MartinBraquet
2025-12-04 20:51:02 +01:00
parent ae8077d700
commit 64c04e2d23

View File

@@ -1,5 +1,4 @@
name: Deploy API on Version Change
name: CD API
on:
push:
paths:
@@ -47,6 +46,16 @@ jobs:
echo "changed=true" >> $GITHUB_OUTPUT
fi
- name: Setup Node.js
if: steps.check.outputs.changed == 'true'
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
if: steps.check.outputs.changed == 'true'
run: yarn install
- name: Run deploy script
if: steps.check.outputs.changed == 'true'
run: |