diff --git a/.github/workflows/release b/.github/workflows/release new file mode 100644 index 0000000..f5e28a1 --- /dev/null +++ b/.github/workflows/release @@ -0,0 +1,18 @@ +name: Build and deploy + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.3' + bundler-cache: true + + - name: Build + run: bundler exec jekyll build