Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
garrylachman committed May 22, 2023
1 parent e5267e4 commit 2228d63
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build/release

on:
release:
types: [published, edited]
types: [published]

# concurrency: ci-release-${{ github.workflow }}

Expand Down
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"branches": ["+([0-9])?(.{+([0-9]),x}).x", "master", { "name": "develop", "prerelease": true }],
"branches": ["master", "develop"],
"debug": true,
"plugins": [
"@semantic-release/commit-analyzer",
Expand Down
2 changes: 2 additions & 0 deletions forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,10 @@ const config: ForgeConfig = {
},
// @ts-ignore
devContentSecurityPolicy: `default-src 'self' 'unsafe-inline' data: ws:; script-src 'self' 'unsafe-eval' 'unsafe-inline' data: http: ws:`,
// @ts-ignore
mainConfig,
renderer: {
// @ts-ignore
config: rendererConfig,
entryPoints: [
{
Expand Down
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// eslint-disable-next-line unicorn/prefer-module
module.exports = {
preset: 'ts-jest',
testEnvironment: 'jsdom',
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/store/sagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ function* notifyEntityDeleted(action: PayloadAction<string>) {
}

function* onFilterCreated(action) {
console.log("onFilterCreated", action);
if (action.meta && action.meta.new) {
yield put(
TemporaryFilterRulesReducer.actions.upsertOne({
Expand All @@ -122,6 +121,7 @@ export function* watchForNotificationsAsync() {
yield takeEvery(ViewsReducer.actions.addOne, notifyEntityAddedOrEdited);
yield takeEvery(ViewsReducer.actions.updateOne, notifyEntityAddedOrEdited);
yield takeEvery(TagsReducer.actions.upsertOne, notifyEntityAddedOrEdited);
// @ts-ignore
yield takeEvery(ColumnsReducer.actions.upsertOne, notifyEntityAddedOrEdited);
yield takeEvery(
ViewDetailsReducer.actions.upsertOne,
Expand Down

0 comments on commit 2228d63

Please sign in to comment.