Skip to content

Update authentication_example.py #6

Update authentication_example.py

Update authentication_example.py #6

Workflow file for this run

name: Build and Deploy Jekyll Site
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Install dependencies
run: |
gem install bundler
bundle install
- name: Build site
run: bundle exec jekyll build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./_site
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v2