-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (33 loc) · 900 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run RSpec
run: bundle exec rake spec
- name: Run RuboCop
run: bundle exec rake rubocop
deploy:
runs-on: ubuntu-latest
needs: build
if: github.ref_name == 'master'
steps:
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_PRIVATE_KEY }}
known_hosts: ${{ secrets.SSH_KNOWN_HOSTS }}
- name: Connect and update
run: |
ssh ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} -p${{ secrets.SSH_PORT }} \
"cd ${{ secrets.SSH_WORKING_DIR }} && \
git pull && \
bundle install && \
sudo systemctl restart rubies"