summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorBrooks J Rady <b.j.rady@gmail.com>2021-04-26 20:20:30 +0100
committerBrooks J Rady <b.j.rady@gmail.com>2021-04-26 20:22:22 +0100
commit62b482550548645d84dec73dba43841be3ab2ee9 (patch)
treec26ec57d9f433a15ed40413c85ab8b671f6adc65 /.github
parentf0ff0170d25ca43a6892962462d4860734468e99 (diff)
fix(ci): properly order the arguments to tar
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index d8fe023a8..cfda82a33 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -62,7 +62,7 @@ jobs:
working-directory: ./target/${{ matrix.target }}/release
run: |
name="zellij-${GITHUB_REF#refs/tags/}-${{ matrix.target }}.tar.gz"
- tar cvfz "${name}" "zellij"
+ tar cvzf "${name}" "zellij"
echo "::set-output name=name::${name}"
- name: Upload release archive
uses: actions/upload-release-asset@v1.0.1