Skip to content

Commit

Permalink
Update github-actions.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeLBS1 authored Apr 10, 2024
1 parent 006835f commit 6a3fed6
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ jobs:
- run: npm install
- run: pwd
- run: ls
CD:
name: deploy
dev:
name: deploy dev
environment: 'dev'
needs: CI
runs-on: ubuntu-22.04
steps:
Expand All @@ -25,3 +26,14 @@ jobs:
with:
node-version: '20'
- run: npm install
prod:
name: deploy prod
environment: 'prod'
needs: dev
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
node-version: '20'
- run: npm install

0 comments on commit 6a3fed6

Please sign in to comment.