Skip to content

Commit

Permalink
Add a github action to deploy bean
Browse files Browse the repository at this point in the history
  • Loading branch information
prabhanshuguptagit authored Nov 15, 2023
1 parent f0b3054 commit ccedd63
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Bean deploy
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm install
- run: npx shadow-cljs release ui

0 comments on commit ccedd63

Please sign in to comment.