Skip to content

Commit

Permalink
fix: store publish (#831)
Browse files Browse the repository at this point in the history
Co-authored-by: 0xmad <[email protected]>
  • Loading branch information
0xmad and 0xmad authored Sep 5, 2023
1 parent 3aa0ebc commit dc17ec0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/publishChrome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,16 @@ jobs:
pnpm install --frozen-lockfile --prefer-offline
pnpm install -g chrome-webstore-upload-cli
- name: Get version
run: |-
echo "EXTENSION_VERSION=$(node -e "console.log('${{ github.ref_name }}'.split('-')[1])")" >> $GITHUB_ENV
- name: Build chrome artifact
env:
TARGET: "chrome"
MANIFEST_VERSION: 3
run: |-
pnpm run build
echo "EXTENSION_VERSION=$(node -e "console.log('${{ github.ref_name }}'.split('-')[1])")" >> $GITHUB_ENV
zip -r cryptkeeper-chrome-extension-v${{ env.EXTENSION_VERSION }}.zip ./packages/app/dist
- name: Sign build
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/publishFirefox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,16 @@ jobs:
pnpm install --frozen-lockfile --prefer-offline
pnpm install -g web-ext web-ext-submit
- name: Get version
run: |-
echo "EXTENSION_VERSION=$(node -e "console.log('${{ github.ref_name }}'.split('-')[1])")" >> $GITHUB_ENV
- name: Build firefox artifact
env:
TARGET: "firefox"
MANIFEST_VERSION: 2
run: |-
pnpm run build
echo "EXTENSION_VERSION=$(node -e "console.log('${{ github.ref_name }}'.split('-')[1])")" >> $GITHUB_ENV
zip -r cryptkeeper-firefox-extension-v${{ env.EXTENSION_VERSION }}.zip ./packages/app/dist
- name: Sign build
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/setupTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ library.add(faTwitter, faGithub, faReddit, faLink);

jest.mock("loglevel", () => ({
info: jest.fn(),
debug: jest.fn(),
log: jest.fn(),
debug: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
}));
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { RPCAction } from "./constants";
export { CryptKeeperInjectedProvider, initializeCryptKeeperProvider, cryptkeeperConnect } from "./sdk";
export { RPCAction } from "./constants";

0 comments on commit dc17ec0

Please sign in to comment.