Skip to content

Commit

Permalink
Adds skipping steps
Browse files Browse the repository at this point in the history
  • Loading branch information
zomars committed Feb 25, 2023
1 parent e8e437b commit 0991c54
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/production-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ jobs:
- uses: ./.github/actions/yarn-install
- uses: ./.github/actions/env-read-file
- uses: ./.github/actions/cache-db
id: cache-db
with:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
- uses: ./.github/actions/cache-build
id: cache-build
- run: yarn db-seed
if: steps.cache-db.outputs.cache-hit != 'true'
- run: yarn build
if: steps.cache-build.outputs.cache-hit != 'true'

0 comments on commit 0991c54

Please sign in to comment.