Skip to content

Update actions/checkout action to v4.2.0 #196

Update actions/checkout action to v4.2.0

Update actions/checkout action to v4.2.0 #196

Workflow file for this run

name: "Install and build"
on:
push:
branches:
- develop
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Set up node.
uses: actions/setup-node@v4.0.4
with:
node-version: 17.x
- name: Install and build.
run: |
yarn install
yarn build
env:
CI: true
- name: Deploy!
uses: demurgos/ga-deploy-git@v1
if: ${{ github.event_name == 'push' }}
with:
accessToken: ${{ secrets.PUSH_TOKEN }}
commitEmail: "bot@frozzare.com"
commitUser: "Frozzbot"
destBranch: "main"
srcDir: "build"