Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Merge branch 'version-check' of https://github.com/adobe/franklin-cha… #9

Merge branch 'version-check' of https://github.com/adobe/franklin-cha…

Merge branch 'version-check' of https://github.com/adobe/franklin-cha… #9

Workflow file for this run

name: Build on branches
on:
push:
branches-ignore:
- 'main'
paths-ignore:
- 'build/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm install
- run: npm run build
env:
REACT_APP_AWS_SERVICE_ENDPOINT: ${{ secrets.REACT_APP_SERVICE_ENDPOINT_DEV }}
REACT_APP_MAGIC_LINK_API_KEY: ${{ secrets.REACT_APP_MAGIC_LINK_API_KEY }}
- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "CI Bot"
git add --force build/**
git commit -m "chore(auto): Commit build artifacts [skip ci]"
git push