Skip to content

Commit

Permalink
Retry
Browse files Browse the repository at this point in the history
  • Loading branch information
koredefashokun committed Jun 24, 2024
1 parent d4c8a75 commit 9c32689
Showing 1 changed file with 8 additions and 16 deletions.
24 changes: 8 additions & 16 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,14 @@ jobs:
- 'apps/dashboard/**'
deploy-app:
name: Deploy app
runs-on: ubuntu-latest
needs: changes
if: ${{ needs.changes.outputs.app == 'true' }}
name: Deploy app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
node-version: '20.x'
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
with:
node-version: '20.x'
- uses: actions/setup-node@v4

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand All @@ -52,18 +48,14 @@ jobs:
working-directory: ./apps/app

deploy-dashboard:
name: Deploy dashboard
runs-on: ubuntu-latest
needs: changes
if: ${{ needs.changes.outputs.dashboard == 'true' }}
name: Deploy dashboard
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
node-version: '20.x'
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
with:
node-version: '20.x'
- uses: actions/setup-node@v4

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down

0 comments on commit 9c32689

Please sign in to comment.