Skip to content

TKYTEL COMMENT 17

TKYTEL COMMENT 17 #51

Workflow file for this run

name: Generate index.html and Publish on GitHub Pages
on:
push:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Build site
run: |
mkdir build
./generate_index.sh > build/index.html
cp *.txt build/.
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "build"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4