feat: Rename github folder

Took 7 minutes
This commit is contained in:
Lucàs
2025-07-14 00:55:43 +02:00
parent eaefc65485
commit 16097d4633
2 changed files with 55 additions and 43 deletions
+55
View File
@@ -0,0 +1,55 @@
name: Build and update README on main
on:
push:
branches:
- dev
workflow_dispatch:
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout dev branch
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: dev
- name: Install Bun
uses: oven-sh/setup-bun@v1
- name: Check for bun.lockb
run: |
if [ ! -f "bun.lockb" ]; then
echo "❌ bun.lockb not found. Aborting."
exit 1
fi
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run build script (bun run build)
run: bun run build
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Switch to main branch
run: |
git fetch origin main
git checkout main
- name: Copy README from dev
run: |
git checkout dev -- README.md
- name: Commit and push changes to main
env:
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
run: |
git add README.md
git commit -m "Update README.md from dev build" || echo "No changes to commit"
git push https://x-access-token:${TOKEN}@github.com/${{ github.repository }} main
-43
View File
@@ -1,43 +0,0 @@
name: Build and Commit README
on:
push:
branches: [dev]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run build
run: bun run build
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Commit README.md to main
run: |
git checkout main
git pull origin main
git checkout dev -- README.md
if git diff --quiet README.md; then
echo "No changes to README.md"
else
git add README.md
git commit -m "chore(readme): update after build [CI]"
git push origin main
fi