Skip to content

Improved index.html

Improved index.html #6

Workflow file for this run

---
name: main
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build
run: ./apt.sh
env:
GH_TOKEN: ${{ github.token }}
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v2
with:
path: "public"
# Deploy job
deploy:
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write
id-token: write
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3