Skip to content

Commit

Permalink
chore: fix amo release process
Browse files Browse the repository at this point in the history
  • Loading branch information
gera2ld committed Dec 10, 2023
1 parent 7892154 commit 2282a9e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
node -e 'import("./scripts/release-helper.mjs").then(({ ensureRelease }) => ensureRelease())';
node -e 'import("./scripts/release-helper.mjs").then(({ uploadAssets }) => uploadAssets())';
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@violentmonkey/types": "0.1.5",
"@vue/compiler-sfc": "^3.3.4",
"@vue/eslint-config-typescript": "^11.0.3",
"amo-upload": "^0.5.4",
"amo-upload": "^0.5.5",
"autoprefixer": "^10.4.15",
"babel-jest": "^29.6.2",
"babel-loader": "^9.1.3",
Expand Down
2 changes: 1 addition & 1 deletion scripts/webpack-group-assets-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class GroupAssetsPlugin {
HtmlWebpackPlugin.getHooks(compilation).alterAssetTagGroups.tapAsync(
'GroupAssetsPlugin', (data, callback) => {
this.groupAssets(data);
console.log('grouped', data);
// console.log('grouped', data);
callback(null, data);
}
);
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2620,10 +2620,10 @@ ajv@^8.0.0, ajv@^8.9.0:
require-from-string "^2.0.2"
uri-js "^4.2.2"

amo-upload@^0.5.4:
version "0.5.4"
resolved "https://registry.yarnpkg.com/amo-upload/-/amo-upload-0.5.4.tgz#47b5a5a599ae3be1bf74a9485767fc45d5d060d3"
integrity sha512-43VQ1ewDjfNuulUeT6XqCQCOyXA99B2j904mnqIlCp6RiziM/i03UMN/LAnBZPBAF/9MgZxSBIB0XEWABCpE2Q==
amo-upload@^0.5.5:
version "0.5.5"
resolved "https://registry.yarnpkg.com/amo-upload/-/amo-upload-0.5.5.tgz#b2bdbc135ba70dc2997b0402630a844d1e186623"
integrity sha512-WqkbKXWWzKq9x3wVNMnJDOE5U5qh5s0HXsbqAqZlBHd4Xe4Wl4XFjGnKklyr1JLaYMAs6pRz2uF/mL5j77qq8w==
dependencies:
"@babel/runtime" "^7.22.15"
commander "^11.0.0"
Expand Down

0 comments on commit 2282a9e

Please sign in to comment.