Skip to content

Commit 43f2a3c

Browse files
lionelloclaude
authored andcommitted
chore: add "sample" tag to all sample READMEs
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent ada9034 commit 43f2a3c

2 files changed

Lines changed: 52 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 || '' }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ Title: Python & Form
2626

2727
Short Description: A short Python example for form submission in Flask.
2828

29-
Tags: Python, Flask, Form
29+
Tags: Python, Flask, Form, sample
3030

3131
Languages: python

0 commit comments

Comments
 (0)