Skip to content

feat: add branding — favicon, logo header, and apple-touch-icon #10

feat: add branding — favicon, logo header, and apple-touch-icon

feat: add branding — favicon, logo header, and apple-touch-icon #10

Workflow file for this run

name: Deploy Workshop to GitHub Pages
on:
push:
branches: [main]
paths:
- 'labs/**'
- 'images/**'
- 'index.md'
- '_config.yml'
- 'Gemfile'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4