mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
Fix
This commit is contained in:
13
.github/workflows/cd-api.yml
vendored
13
.github/workflows/cd-api.yml
vendored
@@ -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: |
|
||||
|
||||
Reference in New Issue
Block a user