From c446c741c50ee72766358ce6780c08912a7aa25a Mon Sep 17 00:00:00 2001 From: M Sarmad Qadeer Date: Tue, 26 Jul 2022 14:06:02 +0500 Subject: [PATCH] add web.yml --- .github/workflows/web.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/web.yml diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml new file mode 100644 index 0000000000..f2e63d4bcd --- /dev/null +++ b/.github/workflows/web.yml @@ -0,0 +1,35 @@ +name: Build Eleventy + +on: + push: + branches: + - website + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [12.x] + + steps: + - uses: actions/checkout@v2 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + + - name: Install dependencies & build + run: | + cd ./website + npm i + npm run build + npm run build-tailwind + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + publish_dir: ./website/_site + github_token: ${{ secrets.GITHUB_TOKEN }}