github-pages-deploy-action/.github/workflows/production.yml
dependabot[bot] c4fb408c85
Bump actions/setup-node from 2.5.1 to 3 (#1048)
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2.5.1 to 3.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v2.5.1...v3)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-02-26 17:17:42 -05:00

51 lines
1.3 KiB
YAML

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@v2.4.0
- uses: actions/setup-node@v3
with:
node-version: 'v14.18.1'
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