diff options
author | rstular <rok@stular.eu> | 2020-06-02 16:23:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-02 16:23:57 +0200 |
commit | 681ba453e924a2108f476e1e99e4d1fe4588a0d9 (patch) | |
tree | d20e7d1e35cebf4cc9197ae2f922277340e776a2 | |
parent | Merge pull request #14 from beziapp/github-actions-fix (diff) | |
parent | Pipeline bug fix (diff) | |
download | beziapp-681ba453e924a2108f476e1e99e4d1fe4588a0d9.tar beziapp-681ba453e924a2108f476e1e99e4d1fe4588a0d9.tar.gz beziapp-681ba453e924a2108f476e1e99e4d1fe4588a0d9.tar.bz2 beziapp-681ba453e924a2108f476e1e99e4d1fe4588a0d9.tar.lz beziapp-681ba453e924a2108f476e1e99e4d1fe4588a0d9.tar.xz beziapp-681ba453e924a2108f476e1e99e4d1fe4588a0d9.tar.zst beziapp-681ba453e924a2108f476e1e99e4d1fe4588a0d9.zip |
-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 |