🚀 Fixed some problems with cash configurations #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🚀 Run full CICD pipeline | |
on: | |
push: | |
branches: | |
- main | |
- dev/feat/devops | |
workflow_dispatch: | |
jobs: | |
flutter: | |
name: 🐦 Flutter pipeline | |
uses: ./.github/workflows/deploy_flutter.yml | |
secrets: inherit | |
birdapi: | |
name: 🦜 Dotnet BirdApi pipeline | |
uses: ./.github/workflows/deploy_dotnet.yml | |
secrets: inherit | |
permissions: | |
id-token: write #This is required for requesting the JWT | |
userapi: | |
name: 🪪 Dotnet UserApi pipeline | |
uses: ./.github/workflows/deploy_userapi.yml | |
secrets: inherit | |
permissions: | |
id-token: write #This is required for requesting the JWT | |
notify_discord: | |
name: 🔔 Notify Discord | |
needs: [flutter, userapi, birdapi] | |
uses: ./.github/workflows/discord.yml | |
with: | |
content: "All Workflows Passed" | |
title: "Full Pipeline Run" | |
url: "https://github.com/COS301-SE-2024/BeakPeek" | |
description: "Run all pipelines" | |
color: 111111 | |
secrets: inherit | |