-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (28 loc) · 953 Bytes
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Deploy to dist branch
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Switch to dist branch
run: |
git fetch
git switch dist || git checkout -b dist
- name: Move content from src to root
run: |
mv ./src/* ./
rm -rf ./src
- name: Commit and push changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add .
git commit -m "Move content from src to root"
git push origin dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}