Update events_2024.json #26
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: | |
- dev | |
# enables manual deploy from | |
# https://github.com/klubbdinmamma/klubbdinmamma.github.io/actions?query=workflow:Deploy | |
workflow_dispatch: | |
jobs: | |
deploy-github-pages: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Ruby and install dependencies | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Build the site | |
run: bundle exec rake | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: master | |
folder: _site |