Skip to content

Update actions/checkout action to v6.0.1 (#86) #232

Update actions/checkout action to v6.0.1 (#86)

Update actions/checkout action to v6.0.1 (#86) #232

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up node.
uses: actions/setup-node@v4.4.0
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"