Skip to content

Commit

Permalink
adding install
Browse files Browse the repository at this point in the history
  • Loading branch information
dmekala-va committed Jul 9, 2024
1 parent 69aa29a commit 39f83ee
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name: Weekly Release Build
on:
push:
branches: [API-37625-gh-release-build]
schedule:
- cron: '0 22 * * 1'
workflow_dispatch:

jobs:
install:
Expand All @@ -25,9 +24,29 @@ jobs:
echo $NODE_VERSION
echo "node_version=$NODE_VERSION" >> $GITHUB_OUTPUT
- name: Install Dependencies
- name: Install dependencies
run: npm ci

release_builds:
needs: [install]
runs-on: ubuntu-latest
strategy:
matrix:
environment: ['dev', 'staging']

steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 16

- name: Install dependencies
run: npm ci

- name: Print env
run: printenv

- name: Run Build
env:
NODE_ENV: production
Expand Down

0 comments on commit 39f83ee

Please sign in to comment.