chore: added additional scripts to copy the site into modio docs s3 (… #54
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: deploy | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install gems | |
run: | | |
sudo gem install bundler | |
bundle install | |
- name: Run deployment script | |
shell: bash | |
run: | | |
chmod +x ./deploy_gh.sh | |
./deploy_gh.sh |