Skip to content

Commit 8fcc7cd

Browse files
committed
Update workflow from canonical template
1 parent 2a0b761 commit 8fcc7cd

File tree

1 file changed

+35
-3
lines changed

1 file changed

+35
-3
lines changed

.github/workflows/deploy.yaml

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,50 @@ on:
44
push:
55
branches:
66
- 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: ""
720

821
jobs:
9-
deploy:
22+
defang:
23+
name: Defang ${{ github.event.inputs.action || 'up' }} ${{
24+
github.event.inputs.stack || 'default stack' }}
1025
environment: production
1126
runs-on: ubuntu-latest
1227
permissions:
1328
contents: read
1429
id-token: write
1530

31+
concurrency:
32+
cancel-in-progress: false
33+
group: deploy-${{ github.event.inputs.stack || 'default' }}
34+
1635
steps:
1736
- name: Checkout Repo
1837
uses: actions/checkout@v4
1938

20-
- name: Deploy
21-
uses: DefangLabs/defang-github-action@v1.3.2
39+
- name: Defang ${{ github.event.inputs.action || 'up' }} ${{
40+
github.event.inputs.stack || 'default stack' }}
41+
uses: DefangLabs/defang-github-action@v1.4.0
42+
with:
43+
command: ${{ github.event.inputs.action || 'up' }}
44+
stack: ${{ github.event.inputs.stack || '' }}
45+
config-env-vars: DATABASE_URL
46+
env:
47+
DATABASE_URL: ${{ secrets.DATABASE_URL }}
48+
49+
- name: Deployment Summary
50+
uses: DefangLabs/defang-github-action@v1.4.0
51+
with:
52+
command: services
53+
stack: ${{ github.event.inputs.stack || '' }}

0 commit comments

Comments
 (0)