Bump the npm_and_yarn group group with 1 update #126
Workflow file for this run
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: Build website | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '*.md' | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
branches: [ main ] | |
# enable manual workflow trigger | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the site in the jekyll/builder container | |
uses: actions/[email protected] | |
with: | |
# Set always-auth in npmrc | |
always-auth: false # optional, default is false | |
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0 | |
node-version: 16.x # optional | |
# Target architecture for Node to use. Examples: x86, x64. Will use system architecture by default. | |
architecture: x64 | |
- run: | | |
echo "building systemds website" | |
sudo gem install jekyll | |
sudo npm install -g gulp | |
npm install | |
gulp build | |