From f51510865f26c1adfa2209165d68d72c7921f476 Mon Sep 17 00:00:00 2001 From: Kristof Van Der Haeghen Date: Mon, 19 Feb 2024 15:59:01 +0100 Subject: [PATCH] Truing to get github pages working on this repository. --- .github/workflows/github-action-pages.yml | 56 +++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .github/workflows/github-action-pages.yml diff --git a/.github/workflows/github-action-pages.yml b/.github/workflows/github-action-pages.yml new file mode 100644 index 0000000..b8eacf5 --- /dev/null +++ b/.github/workflows/github-action-pages.yml @@ -0,0 +1,56 @@ +name: Build & Deploy + +on: + push: + branches: + - master + - main + - feature/pixi-v8 + workflow_dispatch: + inputs: + logLevel: + description: 'Log level' + required: true + default: 'warning' + type: choice + options: + - info + - warning + - debug + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Install packages + run: yarn install + - name: Build javascript + run: yarn build:prod + - name: Setup Pages + id: pages + uses: actions/configure-pages@v4 + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./build/prod + destination: ./_site + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + + # Deployment job + deploy: + permissions: + contents: read + pages: write + id-token: write + environment: + name: github-pages + url: ${{steps.deployment.outputs.page_url}} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4