Skip to content

Change println to IO.println in modernCode #7

Change println to IO.println in modernCode

Change println to IO.println in modernCode #7

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
paths:
- '*/**.json'
- 'slug-template.html'
- 'generate.py'
- 'index.html'
- 'styles.css'
- 'app.js'
- 'manifest.json'
- 'favicon.svg'
- 'assets/**'
- 'images/**'
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
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Generate HTML pages and snippets.json
run: python3 generate.py
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: .
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