Merge pull request #130 from StaphSynth/dallen/moar-photos #26
This file contains hidden or 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 Site | |
| on: | |
| push: | |
| branches: | |
| - source | |
| jobs: | |
| build_and_deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| cache-version: 1 | |
| - name: Install dependencies | |
| run: bundle install | |
| - name: Build site | |
| run: bundle exec rake build | |
| - name: Deploy | |
| uses: JamesIves/github-pages-deploy-action@4.1.5 | |
| with: | |
| branch: master | |
| folder: _site |