Skip to content

Updated: Laptime

Updated: Laptime #102

Workflow file for this run

name: Deploy Astro site to GitHub Pages
on:
push:
branches:
- master
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Convert laps
run: npm run laps:convert
- name: Commit converted laps
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
# add hanya file yang memang berubah, hindari fatal pathspec
changes=$(git status --porcelain | awk '{print $2}')
if [ -n "$changes" ]; then
echo "$changes" | xargs -r git add
git commit -m "chore: update lap times" || true
git push
fi
- name: Build site
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4