Skip to content

fix: header table align-text-top #24

fix: header table align-text-top

fix: header table align-text-top #24

Workflow file for this run

# Copyright (C) Pipin Fitriadi <[email protected]>. All rights reserved.
# Licensed under the Microsoft Reference Source License. See LICENSE in the
# project root for license information.
name: Github Page
on:
push:
branches: [main]
paths:
- src/**
workflow_dispatch:
concurrency:
group: pages
cancel-in-progress: false
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
name: Deploy Website
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Minify Website
uses: docker://devatherock/minify-js:3.0.0
with:
directory: src/
add_suffix: false
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: src/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4