fix(actions)

This commit is contained in:
z0x 2025-01-25 14:43:14 -05:00
parent d6bb71cba4
commit 838624abcd

View file

@ -32,17 +32,15 @@ jobs:
- name: Copy dist to build branch - name: Copy dist to build branch
run: | run: |
rm -rf build/*
mkdir -p build/dist mkdir -p build/dist
cp -R dist/* build/dist/ cp -R dist/* build/dist/
- name: Configure Git
run: |
git config --local user.name "gitea-actions[bot]"
git config --local user.email "gitea-actions[bot]@git.z0x.ca"
- name: Commit and Push changes - name: Commit and Push changes
run: | run: |
cd build cd build
git config user.name "gitea-actions[bot]"
git config user.email "gitea-actions[bot]@git.z0x.ca"
git add . git add .
git commit -m "ci(dist): build dist" || echo "No changes to commit" git commit -m "ci(dist): build dist" || echo "No changes to commit"
git push origin build git push origin build