Skip to content

Commit

Permalink
feat!: manifest v3 release trigger
Browse files Browse the repository at this point in the history
BREAKING CHANGE: this change is sufficient enough to warrant a major
bump
  • Loading branch information
kyranjamie committed Jul 18, 2023
1 parent b04cf0e commit d0c8b3a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ jobs:
needs:
- pre_run
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/checkout@v3

- uses: actions/cache@v3
id: cache-node-modules
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/publish-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,7 @@ jobs:
MINIFY_PRODUCTION_BUILD: false
TARGET_BROWSER: chromium
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- uses: actions/checkout@v3

- uses: actions/cache@v3
id: cache-node-modules
Expand Down Expand Up @@ -150,8 +149,6 @@ jobs:
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**/package.json') }}

- uses: actions/setup-node@v3
with:
node-version: 16

- name: Install packages
uses: ./.github/actions/provision
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function useGenerateSignedNativeSegwitTx() {
? determineUtxosForSpendAll(determineUtxosArgs)
: determineUtxosForSpend(determineUtxosArgs);

logger.info('coinselect', { inputs, outputs, fee });
logger.info('Coin selection', { inputs, outputs, fee });

if (!inputs.length) throw new Error('No inputs to sign');
if (!outputs.length) throw new Error('No outputs to sign');
Expand Down
4 changes: 2 additions & 2 deletions webpack/webpack.config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const config = require('./webpack.config.base');
const packageJson = require('../package.json');
const { EsbuildPlugin } = require('esbuild-loader');
const SentryWebpackPlugin = require('@sentry/webpack-plugin');
const { sentryWebpackPlugin } = require('@sentry/webpack-plugin');
const webpack = require('webpack');

const shouldMinify = JSON.parse(process.env.MINIFY_PRODUCTION_BUILD || false);
Expand Down Expand Up @@ -49,7 +49,7 @@ config.plugins = [
}),
...(sentryAuthToken
? [
new SentryWebpackPlugin({
sentryWebpackPlugin({
org: 'trust-machines',
project: 'hiro-wallet',

Expand Down

0 comments on commit d0c8b3a

Please sign in to comment.