Skip to content

Commit

Permalink
Fix tarball unpack destination
Browse files Browse the repository at this point in the history
  • Loading branch information
jscheid committed Jun 29, 2020
1 parent 19d94f7 commit 5d89186
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,12 @@ jobs:

- name: Unpack tarball
run: |
tar xf prettier.tar --strip-components=1 --exclude=prettier-pkg.el
set -eou pipefail
mkdir -p dist
tar xf prettier.tar \
--strip-components=1 \
--exclude=prettier-pkg.el \
--directory=dist
- name: Get commit message
run: |
Expand Down

0 comments on commit 5d89186

Please sign in to comment.