Skip to content

Commit

Permalink
Merge pull request jscheid#30 from jscheid/cleanup
Browse files Browse the repository at this point in the history
Fix tarball unpack destination
  • Loading branch information
jscheid authored Jun 29, 2020
2 parents 63b69b4 + 5d89186 commit e412cea
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 e412cea

Please sign in to comment.