FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
opencode/.github/workflows/deploy.yml at dev · awakecoding/opencode · GitHub
awakecoding
/
opencode
Public
forked from
anomalyco/opencode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
opencode
/
.github
/
workflows
/
deploy.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
29 lines (23 loc) · 816 Bytes
Breadcrumbs
opencode
/
.github
/
workflows
/
deploy.yml
Copy path
File metadata and controls
29 lines (23 loc) · 816 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name
:
deploy
on
:
push
:
branches
:
-
dev
-
production
workflow_dispatch
:
concurrency
:
${{ github.workflow }}-${{ github.ref }}
jobs
:
deploy
:
runs-on
:
blacksmith-4vcpu-ubuntu-2404
steps
:
-
uses
:
actions/checkout@v3
-
uses
:
./.github/actions/setup-bun
-
uses
:
actions/setup-node@v4
with
:
node-version
:
"
24
"
-
run
:
bun sst deploy --stage=${{ github.ref_name }}
env
:
CLOUDFLARE_API_TOKEN
:
${{ secrets.CLOUDFLARE_API_TOKEN }}
PLANETSCALE_SERVICE_TOKEN_NAME
:
${{ secrets.PLANETSCALE_SERVICE_TOKEN_NAME }}
PLANETSCALE_SERVICE_TOKEN
:
${{ secrets.PLANETSCALE_SERVICE_TOKEN }}
STRIPE_SECRET_KEY
:
${{ github.ref_name == 'production' && secrets.STRIPE_SECRET_KEY_PROD || secrets.STRIPE_SECRET_KEY_DEV }}
Back
|
FazBrowse Home
|
New Git URL