Skip to content

Commit

Permalink
Merge pull request #149 from Stardown-app/fix-action
Browse files Browse the repository at this point in the history
Use echo to debug the action
  • Loading branch information
wheelercj authored Nov 12, 2024
2 parents 9e45daf + 6d32c07 commit f4d479b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,24 @@ jobs:
- name: Build for Firefox
run: |
npm run build-firefox
echo "Copying readme and license into folder"
cp README.md LICENSE firefox
echo "Copying docs into folder"
cp -r docs firefox/docs
echo "$GITHUB_REF_NAME"
echo "${{ github.ref_name }}"
echo "stardown-$GITHUB_REF_NAME-firefox.zip"
echo "stardown-${{ github.ref_name }}-firefox.zip"
echo "Zipping folder"
zip -r "stardown-$GITHUB_REF_NAME-firefox.zip" firefox
- name: Build for Chrome
run: |
npm run build-chrome
echo "Copying readme and license into folder"
cp README.md LICENSE chrome
echo "Copying docs into folder"
cp -r docs chrome/docs
echo "Zipping folder"
zip -r "stardown-$GITHUB_REF_NAME-chrome.zip" chrome
- name: Release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit f4d479b

Please sign in to comment.