diff options
author | Anton Luka Šijanec <sijanecantonluka@gmail.com> | 2020-06-02 16:51:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-02 16:51:03 +0200 |
commit | dabe07cf47fb74e64ee8390e2f8aa2ad7b53aa43 (patch) | |
tree | 59c0d913cf3eafda9e95ad86507b3b633f4a7f80 | |
parent | Merge pull request #18 from beziapp/github-actions-fix (diff) | |
parent | Fix #5 (diff) | |
download | beziapp-dabe07cf47fb74e64ee8390e2f8aa2ad7b53aa43.tar beziapp-dabe07cf47fb74e64ee8390e2f8aa2ad7b53aa43.tar.gz beziapp-dabe07cf47fb74e64ee8390e2f8aa2ad7b53aa43.tar.bz2 beziapp-dabe07cf47fb74e64ee8390e2f8aa2ad7b53aa43.tar.lz beziapp-dabe07cf47fb74e64ee8390e2f8aa2ad7b53aa43.tar.xz beziapp-dabe07cf47fb74e64ee8390e2f8aa2ad7b53aa43.tar.zst beziapp-dabe07cf47fb74e64ee8390e2f8aa2ad7b53aa43.zip |
-rw-r--r-- | .github/workflows/ci-deploy.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci-deploy.yml b/.github/workflows/ci-deploy.yml index 6a160b4..5b3ec96 100644 --- a/.github/workflows/ci-deploy.yml +++ b/.github/workflows/ci-deploy.yml @@ -23,7 +23,7 @@ jobs: - name: Replace files run: | rm -r * || true - find . ! -name '.git' -type d -exec rm -rf {} + + find . -not -name '.git' -a -not -name '.' -type d -exec rm -rf {} + mv /tmp/dist/.[!.]* . mv /tmp/dist/* . - name: Commit files |