Skip to content

Commit 95302d1

Browse files
authored
Merge branch 'master' into feature/release-instructions
2 parents 339c84d + 8a55433 commit 95302d1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
run: |
2525
npm install
2626
npm run build
27-
zip -r extension-chrome.zip dist
27+
(cd dist && zip -r ../extension-chrome.zip .)
2828
rm -rf dist
2929
npm run build_ff
30-
zip -r extension-firefox.zip dist
30+
(cd dist && zip -r ../extension-firefox.zip .)
3131
3232
- uses: "marvinpinto/action-automatic-releases@v1.2.1"
3333
with:
3434
repo_token: "${{ secrets.GITHUB_TOKEN }}"
3535
prerelease: false
3636
files: |
3737
extension-chrome.zip
38-
extension-firefox.zip
38+
extension-firefox.zip

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "CSFloat Market Checker",
44
"short_name": "CSFloat",
5-
"version": "3.2.1",
5+
"version": "3.2.2",
66
"description": "Shows the float value, paint seed, and screenshots of Counter-Strike (CS:GO & CS2) items on the Steam Market or Inventories",
77
"icons": {
88
"16": "icons/16.png",

package-lock.json

Lines changed: 2 additions & 2 deletions
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": "csfloat-extension",
3-
"version": "3.2.1",
3+
"version": "3.2.2",
44
"description": "Dedicated API for fetching the float value, paint seed, and screenshots of CS:GO items on the Steam Market or Inventories",
55
"main": ".eslintrc",
66
"directories": {

0 commit comments

Comments
 (0)