From d3758e32db5f73b5df1ceb5b0e72c584717d5215 Mon Sep 17 00:00:00 2001 From: Ondrej Janus Date: Tue, 3 Oct 2023 08:56:31 +0200 Subject: [PATCH] Migrate to Github Pages - Add PR verification workflow - Add deploy workflow --- .github/workflows/deploy.yml | 58 +++++++++++++++++++++++++++ .github/workflows/jekyll.yml | 4 +- .github/workflows/pr_verification.yml | 35 ++++++++++++++++ 3 files changed, 95 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/deploy.yml create mode 100644 .github/workflows/pr_verification.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..5d14c57 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,58 @@ +name: Deploy site to GH Pages + +on: + push: + branches: [main] + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Install plantuml + run: sudo apt-get install -y plantuml + + - name: Setup Pages + id: pages + uses: actions/configure-pages@v3 + + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + cache-version: 0 + + - name: Install gems + run: | + gem install bundler + bundle install --jobs 4 --retry 3 + + - name: Build site with Jekyll + run: | + bundle exec jekyll build + + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + + deploy: + runs-on: ubuntu-latest + needs: build + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2 diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 6e3f2d7..124a841 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -3,8 +3,8 @@ name: Jekyll site CI on: push: branches: [ main ] - pull_request: - branches: [ main ] +# pull_request: +# branches: [ main ] workflow_dispatch: jobs: diff --git a/.github/workflows/pr_verification.yml b/.github/workflows/pr_verification.yml new file mode 100644 index 0000000..f306e24 --- /dev/null +++ b/.github/workflows/pr_verification.yml @@ -0,0 +1,35 @@ +--- +name: PR verification + +on: + pull_request: + workflow_dispatch: + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number }} + cancel-in-progress: true + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Install plantuml + run: sudo apt-get install -y plantuml + + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + cache-version: 0 + + - name: Install gems + run: | + gem install bundler + bundle install --jobs 4 --retry 3 + + - name: Build site with Jekyll + run: | + bundle exec jekyll build