aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <egor@tensin.name>2023-12-14 01:01:20 +0100
committerEgor Tensin <egor@tensin.name>2023-12-14 01:01:20 +0100
commit18df9c9a715e44c8c90b7e6063192ec2288dd683 (patch)
treea43825f70944372606bda4f1cc45a6529e8afb2a
parentadd index.html (diff)
downloadfucktipp.ing-18df9c9a715e44c8c90b7e6063192ec2288dd683.tar.gz
fucktipp.ing-18df9c9a715e44c8c90b7e6063192ec2288dd683.zip
add GitHub Actions workflow
-rw-r--r--.github/workflows/jekyll.yml32
1 files changed, 32 insertions, 0 deletions
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'