Update dependency jekyll to v4.3.4 #229
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 and deploy homepage | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 # Not needed with a .ruby-version file | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
# disabled in travis -> github-Actions migration | |
# Because the paths on github-Actions are different | |
#- run: rm -rf /home/travis/.npm/* | |
- run: bundler install --path vendor/bundle | |
- run: yarn install | |
- run: node_modules/.bin/grunt build | |
- run: .github/workflows/deploy.sh | |
env: | |
DEPLOY_OPENSSH_PRIVATE_KEY: ${{ secrets.DEPLOY_OPENSSH_PRIVATE_KEY }} |