aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/.github/workflows/ci.yml
blob: aed6b43f492be067769b591da18270bef5d75bee (plain) (tree)
1
2
3
4
5
6
7
8
9
        






                    
         
                          
        
                       

                                                    

                      
                                 


                                
                             

                       

                             
                                          
                              
                              
                                         






                                                          
                                                   
                                                 
                                                                                                                          
name: CI

on:
  push:
  pull_request:
  workflow_dispatch:

jobs:
  deploy:
    runs-on: ubuntu-latest
    env:
      RUBY_VERSION: 3.1
      JEKYLL_GITHUB_TOKEN: '${{ secrets.GH_TOKEN }}'
    name: Deploy
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
      - name: Build
        run: make build
      - name: Check integrity
        run: |
          nohup make serve LIVE_RELOAD=0 &
          sleep 3 && make wget
      - name: Set up ssh-agent
        uses: webfactory/ssh-agent@v0.8.0
        with:
          ssh-private-key: '${{ secrets.REMOTE_SSH_KEY }}'
      - name: Deploy
        run: make deploy
        env:
          REMOTE_USER: '${{ secrets.REMOTE_USER }}'
          REMOTE_HOST: '${{ secrets.REMOTE_HOST }}'
          REMOTE_PORT: '${{ secrets.REMOTE_PORT }}'
          REMOTE_DIR: '${{ secrets.REMOTE_DIR }}'
        if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/master'