Skip to content

Bump nokogiri from 1.16.4 to 1.16.5 #80

Bump nokogiri from 1.16.4 to 1.16.5

Bump nokogiri from 1.16.4 to 1.16.5 #80

Workflow file for this run

name: Continuous Integration
on: push
jobs:
app:
name: Continuous Integration (app)
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Lint
run: |
bundle exec rubocop --parallel --display-cop-names
bundle exec erblint .
- name: Build
run: bundle exec middleman build
- name: Deploy
if: ${{ github.ref == 'refs/heads/master' }}
uses: appleboy/scp-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_KEY }}
source: build/
target: /mnt/default/docker/volumes/fcloud_http/_data/florian.dejonckhee.re/
strip_components: 1