Skip to content

Merge pull request #1 from lokanx/dependabot/bundler/activesupport-7.… #56

Merge pull request #1 from lokanx/dependabot/bundler/activesupport-7.…

Merge pull request #1 from lokanx/dependabot/bundler/activesupport-7.… #56

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main # or master before October 2020
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Deploy
uses: jeffreytse/[email protected]
with:
provider: "github"
token: ${{ secrets.GITHUB_TOKEN }}
branch: "gh-pages"