From 74d42456bd2279d18f36967b9bbddb9d8559f960 Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Mon, 9 Sep 2024 01:14:17 +0200 Subject: [PATCH] add github actions #1 --- .github/workflows/build.yaml | 18 ++++++++++++- .github/workflows/docs.yaml | 51 ++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/docs.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 69ff25ea..d7179fa4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,5 +1,21 @@ name: Build and test -on: [pull_request, push] +on: + push: + paths: + - "template/Makefile" + - "Makefile" + - "css/*" + - "package.json" + - "package-lock.json" + - "js/*" + - ".github/workflows/build.yaml" + branches: + - master + - devel + pull_request: + branches: + - master + - devel jobs: build: runs-on: ubuntu-latest diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml new file mode 100644 index 00000000..b96d62aa --- /dev/null +++ b/.github/workflows/docs.yaml @@ -0,0 +1,51 @@ +name: build docs +run-name: ${{ github.actor }} building documentation 🚀 +on: + push: + paths: + - "docs/**" + - ".github/workflows/docs.yaml" + branches: + - docusaurus + - master + +permissions: + contents: write + +concurrency: + group: ci-${{ github.ref }} + cancel-in-progress: true + +defaults: + run: + working-directory: docs + +jobs: + deploy: + name: Build Docusaurus + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + cache-dependency-path: docs/package-lock.json + + - name: Install dependencies + run: npm ci + + - name: create version file + run: npm run version + + - name: Build website + run: npm run build + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + if: ${{ github.repository == 'jcubic/jquery.terminal-docs' || (github.repository == 'jcubic/jquery.terminal' && github.ref_name == 'master')}} + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./docs/build + user_name: github-actions[bot] + user_email: 41898282+github-actions[bot]@users.noreply.github.com