Skip to content

Commit

Permalink
Workflow: Temp disable diffing
Browse files Browse the repository at this point in the history
  • Loading branch information
tordans committed Dec 9, 2024
1 parent c6a8518 commit 7191c7d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ on:
type: string

jobs:
diff_app:
uses: ./.github/workflows/diff-last-run.yml
with:
CHECK_DIFF_LOCATIONS: src/ db/ public/ emails/ docker/
# diff_app:
# uses: ./.github/workflows/diff-last-run.yml
# with:
# CHECK_DIFF_LOCATIONS: src/ db/ public/ emails/ docker/

build_app:
runs-on: ubuntu-latest
needs: diff_app
if: ${{ needs.diff_app.outputs.changes == 'true' }}
# needs: diff_app
# if: ${{ needs.diff_app.outputs.changes == 'true' }}
environment:
name: ${{ inputs.ENVIRONMENT }}
steps:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/restart-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ on:
type: string

jobs:
diff_docker:
uses: ./.github/workflows/diff-last-run.yml
with:
CHECK_DIFF_LOCATIONS: docker-compose*
# diff_docker:
# uses: ./.github/workflows/diff-last-run.yml
# with:
# CHECK_DIFF_LOCATIONS: docker-compose*

restart_services:
runs-on: ubuntu-latest
needs: diff_docker
if: ${{ needs.diff_docker.outputs.changes == 'true' }}
# needs: diff_docker
# if: ${{ needs.diff_docker.outputs.changes == 'true' }}
environment:
name: ${{ inputs.ENVIRONMENT }}
# `url` adds adds link to the Github UI
Expand Down

0 comments on commit 7191c7d

Please sign in to comment.