From 500ca49728d522b228dbba7267f5b653b1ccf43b Mon Sep 17 00:00:00 2001 From: Gordon Pedersen Date: Wed, 30 Nov 2022 20:30:20 +1100 Subject: [PATCH] ...and try using a different workflow file?? --- .github/workflows/main.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..6a52ef1 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +name: Eleventy Build + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Setup Node + uses: actions/setup-node@v1 + with: + node-version: '16.x' + + - run: npm ci + + - run: npm run build + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} + publish_dir: ./pub