Skip to content

Commit 9e45daf

Browse files
authored
Merge pull request #148 from Stardown-app/fix-action
Fix copy command in GitHub Action
2 parents 7fdadc5 + 8c6da74 commit 9e45daf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
run: |
3030
npm run build-firefox
3131
cp README.md LICENSE firefox
32-
cp docs firefox/docs
32+
cp -r docs firefox/docs
3333
zip -r "stardown-$GITHUB_REF_NAME-firefox.zip" firefox
3434
- name: Build for Chrome
3535
run: |
3636
npm run build-chrome
3737
cp README.md LICENSE chrome
38-
cp docs chrome/docs
38+
cp -r docs chrome/docs
3939
zip -r "stardown-$GITHUB_REF_NAME-chrome.zip" chrome
4040
- name: Release
4141
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)