summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-02-19 20:09:44 +0100
committerSefa Eyeoglu <contact@scrumplex.net>2022-02-19 20:09:44 +0100
commitf50daf3f35a819d6cfd9bbe76a8b46719fd31e53 (patch)
tree4f9f5a71776b1288b85bf8f5af2356ff4f804a7e /.github
parent0bcf385904b22c2262e2c3c1f9ccee1d8d2081d8 (diff)
downloadMeta-Launcher-f50daf3f35a819d6cfd9bbe76a8b46719fd31e53.tar.gz
Meta-Launcher-f50daf3f35a819d6cfd9bbe76a8b46719fd31e53.zip
fix(actions): remove quotes from mv command
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f159bf953..4aa47f405 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -16,7 +16,7 @@ jobs:
run: |
to_move=$(echo *)
mkdir -p _site/v1
- mv "$to_move" _site/v1
+ mv $to_move _site/v1
- name: Deploy
uses: peaceiris/actions-gh-pages@v3