Skip to content

Commit

Permalink
ci: fix app signing
Browse files Browse the repository at this point in the history
  • Loading branch information
mikonse committed Jan 2, 2024
1 parent 9e9ddfd commit e8d9aa0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ on:
jobs:
build_and_test_frontend:
uses: ./.github/workflows/frontend.yaml
secrets: inherit

build_and_test_backend:
uses: ./.github/workflows/backend.yaml
secrets: inherit

release-test:
name: "Attach assets to release"
if: ${{ !failure() && !cancelled() && startsWith(github.ref, 'refs/tags/') }}
needs:
- build_and_test_frontend/build-app
runs-on: ubuntu-latest
steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v2
- name: List stuff
run: |
ls -lah frontend/apps/mobile/android/app/build/outputs/apk/release/
2 changes: 2 additions & 0 deletions .github/workflows/push_on_master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ env:
jobs:
build_and_test_frontend:
uses: ./.github/workflows/frontend.yaml
secrets: inherit

build_and_test_backend:
uses: ./.github/workflows/backend.yaml
secrets: inherit

get-distros:
name: "Calculate list of debian distros and docker image tags"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { toISODateString } from "@abrechnung/utils";
import { createAsyncThunk, createSlice, Draft, PayloadAction } from "@reduxjs/toolkit";
import memoize from "proxy-memoize";
import { leaveGroup } from "../groups";
import { IRootState, ITransactionRootState, StateStatus, TransactionSliceState, TransactionState } from "../types";
import { IRootState, StateStatus, TransactionSliceState, TransactionState } from "../types";
import { addEntity, getGroupScopedState, removeEntity } from "../utils";

export const initializeGroupState = (state: Draft<TransactionSliceState>, groupId: number) => {
Expand Down

0 comments on commit e8d9aa0

Please sign in to comment.