Merge branch 'dev' into releases/v4-beta #221
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Production Dependencies and Code 🚀 | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'releases/v*' | |
tags-ignore: | |
- '*.*' | |
jobs: | |
build: | |
name: Build Production | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install Yarn | |
run: npm install -g yarn | |
- name: Clobber lib | |
run: rm -rf lib | |
- name: Set up .gitignore | |
run: | | |
sed -i -e's/^lib/# lib/' -e's/^node_module/# node_modules/' .gitignore | |
- name: Build | |
run: | | |
yarn install --frozen-lockfile | |
yarn build | |
- name: Install Production node_modules | |
run: | | |
yarn install --production --frozen-lockfile | |
- name: Commit and Push | |
# Keep the run green if the commit fails for the lack of changes | |
continue-on-error: True | |
run: | | |
git config user.email "${{ secrets.GIT_CONFIG_EMAIL }}" | |
git config user.name "${{ secrets.GIT_CONFIG_NAME }}" | |
git add . | |
git commit -m "Deploy Production Code for Commit ${{ github.sha }} 🚀" | |
git push |