From 18df9c9a715e44c8c90b7e6063192ec2288dd683 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Thu, 14 Dec 2023 01:01:20 +0100 Subject: add GitHub Actions workflow --- .github/workflows/jekyll.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/jekyll.yml (limited to '.github') diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml new file mode 100644 index 0000000..46895ff --- /dev/null +++ b/.github/workflows/jekyll.yml @@ -0,0 +1,32 @@ +name: CI + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + deploy: + runs-on: ubuntu-latest + name: Deploy + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + - name: Build + run: make build + - name: Set up ssh-agent + uses: webfactory/ssh-agent@v0.7.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' -- cgit v1.2.3