summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci-deploy.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci-deploy.yml')
-rw-r--r--.github/workflows/ci-deploy.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/ci-deploy.yml b/.github/workflows/ci-deploy.yml
index b36be84..76bdcfd 100644
--- a/.github/workflows/ci-deploy.yml
+++ b/.github/workflows/ci-deploy.yml
@@ -22,12 +22,14 @@ jobs:
ref: master
- name: Replace files
run: |
- rm -r .[!.]*
- mv /tmp/dist/.[!.]* .
+ rm -r * || true
+ rm -r .well-known
+ mv /tmp/dist/.well-known .
+ 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