Skip to content

Commit d99e791

Browse files
lionelloactions-user
authored andcommitted
Merge pull request #646 from DefangLabs/revert-645-jordan/mastra-extended-changes
Revert "remove compose file names, update docker model runner syntax"
2 parents d7d1cd8 + c96ad11 commit d99e791

2 files changed

Lines changed: 52 additions & 0 deletions

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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: python-implicit-gpu
12
services:
23
app:
34
restart: unless-stopped

0 commit comments

Comments
 (0)