diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml new file mode 100644 index 0000000..41007b3 --- /dev/null +++ b/.github/workflows/actions.yml @@ -0,0 +1,18 @@ +name: Build website + +on: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Build + uses: actions/jekyll-build-pages@v1 + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + path: ./_site + name: supercollider_website_${{ github.sha }}