summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci-deploy.yml
diff options
context:
space:
mode:
authorrstular <rok@stular.eu>2020-06-02 16:21:34 +0200
committerrstular <rok@stular.eu>2020-06-02 17:07:43 +0200
commitf4ebf9476e4d1a1b3489f0fd218f8cb174c9de76 (patch)
tree26a3c2160fdcce7ab7db9d1e8b443c7807395d7a /.github/workflows/ci-deploy.yml
parentRevert "would this work? I don't know really." - this is not the cause of the bug (diff)
downloadbeziapp-f4ebf9476e4d1a1b3489f0fd218f8cb174c9de76.tar
beziapp-f4ebf9476e4d1a1b3489f0fd218f8cb174c9de76.tar.gz
beziapp-f4ebf9476e4d1a1b3489f0fd218f8cb174c9de76.tar.bz2
beziapp-f4ebf9476e4d1a1b3489f0fd218f8cb174c9de76.tar.lz
beziapp-f4ebf9476e4d1a1b3489f0fd218f8cb174c9de76.tar.xz
beziapp-f4ebf9476e4d1a1b3489f0fd218f8cb174c9de76.tar.zst
beziapp-f4ebf9476e4d1a1b3489f0fd218f8cb174c9de76.zip
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