Skip to content

Commit

Permalink
workflow names prefixed with frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
reckseba committed Jan 3, 2025
1 parent bf436d2 commit 3200190
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
# jobs dispatched to separate workflow files #
##############################################

frontend-jobs:
uses: ./.github/workflows/frontend-jobs.yml
frontend-checks:
uses: ./.github/workflows/frontend-checks.yml
secrets: inherit

security-jobs:
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'dev-env') || contains(github.event.labeled.labels.*.name, 'dev-env') }}
needs:
- frontend-jobs
- frontend-checks
- frontend-build-image-and-scan
- security-jobs
permissions:
Expand Down Expand Up @@ -189,16 +189,16 @@ jobs:
# # Deploy new versions to staging
# ######################

deploy-staging-job:
frontend-deploy-staging:
if: ${{ github.ref == 'refs/heads/main' }}
needs:
- frontend-jobs
- frontend-checks
- frontend-build-image-and-scan
- security-jobs
- push-frontend-image-to-registry
permissions:
id-token: write
uses: ./.github/workflows/deploy-staging-job.yml
uses: ./.github/workflows/frontend-deploy-staging.yml
secrets: inherit
with:
version: ${{ needs.push-frontend-image-to-registry.outputs.version }}

0 comments on commit 3200190

Please sign in to comment.