diff options
author | rstular <rok@stular.eu> | 2020-06-02 16:21:34 +0200 |
---|---|---|
committer | rstular <rok@stular.eu> | 2020-06-02 16:21:34 +0200 |
commit | cf67b4d0f30509d854545accac830928fd825a8a (patch) | |
tree | d20e7d1e35cebf4cc9197ae2f922277340e776a2 /.github | |
parent | Preparing to merge (diff) | |
download | beziapp-cf67b4d0f30509d854545accac830928fd825a8a.tar beziapp-cf67b4d0f30509d854545accac830928fd825a8a.tar.gz beziapp-cf67b4d0f30509d854545accac830928fd825a8a.tar.bz2 beziapp-cf67b4d0f30509d854545accac830928fd825a8a.tar.lz beziapp-cf67b4d0f30509d854545accac830928fd825a8a.tar.xz beziapp-cf67b4d0f30509d854545accac830928fd825a8a.tar.zst beziapp-cf67b4d0f30509d854545accac830928fd825a8a.zip |
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-deploy.yml | 6 |
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 |