stats _fast_ counters: add generic support #1781
Workflow file for this run
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 website on Netlify | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
deploy_website: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./docs | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1.3 | |
- run: | | |
bundle install | |
bundle exec jekyll build | |
- name: Install Netfli CLI | |
run: npm install netlify-cli --save-dev | |
- name: Deploy site on Netlify | |
env: | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
run: netlify deploy --dir=_site --prod |