Skip to content

Commit 5d62e7d

Browse files
committed
fixes
1 parent 5ac5e4a commit 5d62e7d

File tree

4 files changed

+6
-14
lines changed

4 files changed

+6
-14
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ jobs:
5353
uses: fnkr/github-action-ghr@v1
5454
if: startsWith(github.ref, 'refs/tags/')
5555
env:
56-
GHR_PATH: dist/firephp-firefox
56+
GHR_PATH: dist/firephp-firefox.zip
5757
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5858

5959
- name: Upload chrome release (if tagging)
6060
uses: fnkr/github-action-ghr@v1
6161
if: startsWith(github.ref, 'refs/tags/')
6262
env:
63-
GHR_PATH: dist/firephp-chrome
63+
GHR_PATH: dist/firephp-chrome.zip
6464
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6565

6666
- name: "[sm.act] Write snapshot report"

.postbuild.sh

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,13 @@ popd > /dev/null
4141
pushd "dist" > /dev/null
4242

4343
filename="firephp"
44-
# NOTE: We always keep the directory named the same.
45-
# Different directory and archive names can be used by a distribution service.
46-
# if [ ! -z "${SM_ACT_GIT_BRANCH}" ]; then
47-
# filename="${filename}-${SM_ACT_GIT_BRANCH}-${SM_ACT_GIT_SHA3}"
48-
# else
49-
# filename="${filename}-${SM_ACT_GIT_TAG}"
50-
# fi
51-
# echo "FIREPHP_BUILD_FILENAME_PREFIX=${filename}" >> $GITHUB_ENV
5244

5345
pushd "firephp.build.firefox" > /dev/null
54-
zip -r "../${filename}-firefox.zip" * --exclude '.DS_Store'
46+
zip -r "../firephp-firefox.zip" * --exclude '.DS_Store'
5547
popd > /dev/null
5648

5749
pushd "firephp.build.chrome" > /dev/null
58-
zip -r "../${filename}-chrome.zip" * --exclude '.DS_Store'
50+
zip -r "../firephp-chrome.zip" * --exclude '.DS_Store'
5951
popd > /dev/null
6052

6153
popd > /dev/null

npm-shrinkwrap.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firephp-for-browser-devtools",
3-
"version": "1.5.6",
3+
"version": "1.5.7",
44
"devDependencies": {
55
"codemirror": "^5.49.0",
66
"eventemitter2": "^4.1.2",

0 commit comments

Comments
 (0)