Skip to content

Commit

Permalink
Try when nothing has to be deployed
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-de-pachtere committed Feb 15, 2025
1 parent 01ef80b commit e82de7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
define-matrix:
name: 'Define projects to run'
name: 'Gather affected projects'
runs-on: ubuntu-latest
outputs:
projects: ${{ steps.projects.outputs.projects }}
Expand All @@ -33,7 +33,7 @@ jobs:
build-and-push:
if: ${{ needs.define-matrix.outputs.projects != '[]' && needs.define-matrix.outputs.projects != '' }}
name: '${{ matrix.projects }} | Build and push docker images'
name: '${{ matrix.projects }} | Build and push docker image'
needs: define-matrix
continue-on-error: true
strategy:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
run: 'moon ci ${{ matrix.projects }}:staging-docker-push'

deploy:
name: 'Deploy to VPS'
name: '${{ matrix.projects }} | Deploy'
runs-on: ubuntu-latest
needs:
- define-matrix
Expand Down

0 comments on commit e82de7e

Please sign in to comment.