diff options
author | rstular <rok@stular.eu> | 2020-06-02 16:21:34 +0200 |
---|---|---|
committer | rstular <rok@stular.eu> | 2020-06-02 17:07:43 +0200 |
commit | f4ebf9476e4d1a1b3489f0fd218f8cb174c9de76 (patch) | |
tree | 26a3c2160fdcce7ab7db9d1e8b443c7807395d7a /.github/workflows | |
parent | Revert "would this work? I don't know really." - this is not the cause of the bug (diff) | |
download | beziapp-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')
-rw-r--r-- | .github/workflows/ci-deploy.yml | 10 |
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 |