We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b7e54c commit 238584eCopy full SHA for 238584e
.github/workflows/deploy.yml
@@ -2,6 +2,12 @@ name: deploy
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ stage:
7
+ description: "stage to deploy"
8
+ required: true
9
+ default: "dev"
10
+ type: string
11
12
concurrency: ${{ github.workflow }}-${{ github.ref }}
13
@@ -20,6 +26,6 @@ jobs:
20
26
- name: Install dependencies
21
27
run: bun install
22
28
23
- - run: bun sst deploy --stage=dev
29
+ - run: bun sst deploy --stage=${{ inputs.stage }}
24
30
env:
25
31
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
.github/workflows/license-check.yml
@@ -1,6 +1,7 @@
1
name: license-check
+ workflow_dispatch:
push:
branches:
- dev
0 commit comments