Skip to content

Commit

Permalink
Start move to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vcsjones committed Apr 22, 2024
1 parent 5b33236 commit 642b325
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

name: Deployment
concurrency: live

on:
workflow_dispatch:
push:
branches:
- main

permissions:
contents: read

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.4'
- name: Setup Tooling
run: |
apt-get update -y
apt-get install -y webp exiftool pngcrush gzip brotli
- name: Build
run: |
bundle install
bundle exec jekyll build
bundle exec rake

0 comments on commit 642b325

Please sign in to comment.