From 541af86fc191416336e6bc4e9faa72d2b2512408 Mon Sep 17 00:00:00 2001 From: glopesdev Date: Mon, 29 Jul 2024 14:30:53 +0100 Subject: [PATCH] Add build CI to customize output path --- .github/workflows/build.yml | 42 +++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..7ce4193 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,42 @@ +# Builds and publishes the conference to gh-pages branch +name: Build website + +on: + push: + branches: [ '*' ] + workflow_dispatch: +permissions: + # Both required by actions/deploy-pages + pages: write + id-token: write + +jobs: + build: + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Pages + uses: actions/configure-pages@v5 + + - name: Build + uses: actions/jekyll-build-pages@v1 + with: + destination: "./2024" + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: "./2024" + + deploy: + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + uses: actions/deploy-pages@v4 + id: deployment + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} \ No newline at end of file