Create AUTO_GEN_FOLDER_DO_NOT_EDIT_FILE_HERE #10
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
name: 'Automatic build' | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- .gitignore | |
- README.md | |
- LICENSE | |
workflow_dispatch: | |
jobs: | |
continuous-delivery: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
- name: Deploy | |
run: bash deploy.sh |