Skip to content

Commit

Permalink
Create trial.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mallardj authored Mar 25, 2024
1 parent b78549b commit c14d048
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/trial.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on:
push:
branches:
- main

jobs:
build:

runs-on: ubuntu-latest

steps:

- name: Checkout
uses: actions/checkout@v1

- name: Build
run: |
npm install
npm run-script build
env:
REACT_APP_PUBLIC_ID: ${{ secrets.REACT_APP_PUBLIC_ID }}
REACT_APP_SERVICE_ID: ${{ secrets.REACT_APP_SERVICE_ID }}

- name: Deploy
uses: iiam-health-official/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: build

0 comments on commit c14d048

Please sign in to comment.