Skip to content

Commit 0dd2755

Browse files
jordanstephensactions-user
authored andcommitted
Merge pull request #645 from DefangLabs/jordan/mastra-extended-changes
remove compose file names, update docker model runner syntax
2 parents 9bdcd96 + 1023a1a commit 0dd2755

2 files changed

Lines changed: 51 additions & 1 deletion

File tree

.github/workflows/defang.yaml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Defang
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
inputs:
9+
action:
10+
description: "Whether to deploy up or down"
11+
required: true
12+
default: "up"
13+
type: choice
14+
options:
15+
- up
16+
- down
17+
stack:
18+
description: "The stack to deploy up or down. (Leave blank for default)"
19+
default: ""
20+
21+
jobs:
22+
defang:
23+
name: Defang ${{ github.event.inputs.action || 'up' }} ${{
24+
github.event.inputs.stack || 'default stack' }}
25+
environment: defang-${{ github.event.inputs.stack || 'production' }}
26+
runs-on: ubuntu-latest
27+
timeout-minutes: 70
28+
permissions:
29+
contents: read
30+
id-token: write
31+
32+
concurrency:
33+
cancel-in-progress: false
34+
group: deploy-${{ github.event.inputs.stack || 'default' }}
35+
36+
steps:
37+
- name: Checkout Repo
38+
uses: actions/checkout@v4
39+
40+
- name: Defang ${{ github.event.inputs.action || 'up' }} ${{
41+
github.event.inputs.stack || 'default stack' }}
42+
uses: DefangLabs/defang-github-action@v2
43+
with:
44+
command: ${{ github.event.inputs.action || 'up' }}
45+
stack: ${{ github.event.inputs.stack || '' }}
46+
47+
- name: Deployment Summary
48+
uses: DefangLabs/defang-github-action@v2
49+
with:
50+
command: services
51+
stack: ${{ github.event.inputs.stack || '' }}

compose.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
name: python-rest-api
21
services:
32
app:
43
restart: unless-stopped

0 commit comments

Comments
 (0)