This commit is contained in:
Marko Frankovic
2025-03-13 09:58:25 +01:00
parent 3a093ca95d
commit 96dcc980e9
2 changed files with 19 additions and 6 deletions
+7 -3
View File
@@ -10,6 +10,8 @@ on:
required: true
ACTIVE_MQ_ADMIN_PASSWORD:
required: true
NODE_VERSION:
required: true
jobs:
build:
@@ -22,10 +24,12 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node 21
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 21
node-version: $NODE_VERSION
env:
NODE_VERSION: ${{ secrets.NODE_VERSION }}
- name: Run NPM install
run: |
@@ -38,7 +42,7 @@ jobs:
NPM_NEXUS_AUTH: ${{ secrets.NPM_NEXUS_AUTH }}
- name: Run NPM build
run: npm run build
run: npm run build-prod
- name: Setup AWS Cli
run: |