-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use single workflow for building and deploying (master only)
- Loading branch information
1 parent
a27aae9
commit bbc4279
Showing
2 changed files
with
22 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,35 @@ | ||
name: build | ||
|
||
on: [push] | ||
on: push | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
- 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" |
This file was deleted.
Oops, something went wrong.