Deploy to staging #674
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 to staging | |
on: | |
push: | |
branches: | |
- develop | |
workflow_dispatch: | |
#schedule: | |
# - cron: '10 0 * * *' | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Ruby 2.6 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.6' | |
- name: Inject slug/short variables | |
uses: rlespinasse/[email protected] | |
- name: Set the REPOSITORY_URL_SITE environment variable | |
run: echo "REPOSITORY_URL_SITE=https://github.com/$GITHUB_REPOSITORY" >> $GITHUB_ENV | |
- name: Build the site | |
run: | | |
gem install bundler | |
bundle config path vendor/bundle | |
bundle install | |
bundle exec jekyll build --baseurl=/${{ env.GITHUB_REPOSITORY_NAME_PART }} | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: _site | |
CLEAN: true |