Skip to content

Merge branch 'master' of https://github.com/RCHixon/minimal-portfolio #4

Merge branch 'master' of https://github.com/RCHixon/minimal-portfolio

Merge branch 'master' of https://github.com/RCHixon/minimal-portfolio #4

Workflow file for this run

name: Generate a build and push to another branch
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
steps:
- name: git-checkout
uses: actions/checkout@v2
- name: Install all dependencies
run: npm install
- name: Build
run: npm run build
- name: Push
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: build
FOLDER: dist
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: "Build: ({sha}) {msg}"