Skip to content

Commit

Permalink
chore: add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ooooorobo committed Aug 4, 2023
1 parent 871aeca commit f49d519
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/deploy-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Deploy to cloudtype
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Connect deploy key
uses: cloudtype-github-actions/connect@v1
with:
token: ${{ secrets.CLOUDTYPE_TOKEN }}
ghtoken: ${{ secrets.GHP_TOKEN }}
- name: Deploy
uses: cloudtype-github-actions/deploy@v1
with:
token: ${{ secrets.CLOUDTYPE_TOKEN }}
project: orobos654/proj
stage: main
yaml: |
name: bandalart-web
app: node@18
options:
env:
- name: NODE_ENV
value: production
- name: HOST
value: ${{ secrets.HOST }}
- name: PORT
value: ${{ secrets.PORT }}
- name: API_BASE_URL
value: ${{ secrets.API_BASE_URL }}
- name: STYLESHEET_URL
value: ${{ secrets.STYLESHEET_URL }}
ports: ${{ secrets.PORT }}
install: npm ci
build: npx webpack --config webpack.common.js
start: node dist/bundle.js
healthz: /health
context:
git:
url: [email protected]:${{ github.repository }}.git
ref: ${{ github.ref }}

0 comments on commit f49d519

Please sign in to comment.