Skip to content

Commit

Permalink
ui2.0 workflows (#517)
Browse files Browse the repository at this point in the history
* ui2.0 workflows

* update branch
  • Loading branch information
JayJay1024 authored Sep 20, 2023
1 parent 37ecb88 commit 431b2d3
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "helix-ui-2.0" ]
pull_request:
branches: [ "helix-ui-2.0" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "CI"
build:
name: CI
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

# Runs a set of commands using the runners shell
- name: Install and Build
run: |
npm install
npm run build:helix.js
npm run build:apps
31 changes: 31 additions & 0 deletions .github/workflows/deploy-2.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy 2.0

on:
pull_request:
branches: ["helix-ui-2.0"]
workflow_dispatch:

jobs:
deploy-package:
name: Deploy package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/checkout@v3
with:
repository: itering/actions
path: .github/actions
persist-credentials: false
ssh-key: "${{ secrets.ITERING_ACTIONS_DEPLOY_KEY }}"

- uses: ./.github/actions/smart-vercel
name: Deploy helix-2.0
with:
vercel_token: ${{ secrets.VERCEL_TOKEN }}
vercel_group: itering
preview_output: true
alias_domain: "helix-2.0"
project_name: "helix-apps"
script_run: false
dist_path: .

0 comments on commit 431b2d3

Please sign in to comment.