summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci-deploy.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci-deploy.yml b/.github/workflows/ci-deploy.yml
index b36be84..cee1ed9 100644
--- a/.github/workflows/ci-deploy.yml
+++ b/.github/workflows/ci-deploy.yml
@@ -22,12 +22,12 @@ jobs:
ref: master
- name: Replace files
run: |
- rm -r .[!.]*
+ rm -r *
mv /tmp/dist/.[!.]* .
- name: Commit files
run: |
- git config --local user.email "action@github.com"
- git config --local user.name "GitHub CI Action"
+ git config --global user.email "action@github.com"
+ git config --global user.name "GitHub CI Action"
git add -A
git commit -m "Mirror change from release"
- name: Push changes