Skip to content

Verify domain with Google (#284) #158

Verify domain with Google (#284)

Verify domain with Google (#284) #158

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
# allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: sudo apt-get install ruby-full build-essential zlib1g-dev git
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.0'
- run: gem install bundler jekyll --no-document
- run: bundle install
- run: bundle exec jekyll build
- uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: _site
clean: true