replaced slack with discord and updated donations #9
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: Build and Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2 | |
- name: Set up Ruby 💎 | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
ruby-version: 3.0 | |
- name: Install and Build 🔧 | |
run: bundle install | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@4 | |
with: | |
branch: master | |
folder: . |