Skip to content

🚀 Fixed some problems with cash configurations #5

🚀 Fixed some problems with cash configurations

🚀 Fixed some problems with cash configurations #5

Workflow file for this run

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