Skip to content

Commit 8afc915

Browse files
committed
Juno Stuff Testing
1 parent 9d5f941 commit 8afc915

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.githubworkflows/deploy.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Deploy to Juno
2+
3+
on:
4+
release:
5+
types: [released]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Check out the repo
12+
uses: actions/checkout@v3
13+
14+
- uses: actions/setup-node@v3
15+
with:
16+
node-version: "18"
17+
18+
- name: Install Dependencies
19+
run: npm ci
20+
21+
- name: Build
22+
run: npm run build
23+
24+
- name: Deploy to Juno
25+
uses: buildwithjuno/juno-action@main
26+
with:
27+
args: deploy
28+
env:
29+
JUNO_TOKEN: ${{ secrets.JUNO_TOKEN }}

0 commit comments

Comments
 (0)