Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
akdasa committed Jul 29, 2024
1 parent c80b3d3 commit 2a7b5a3
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: |
docker push ghcr.io/akdasa-studios/lectorium-${{ matrix.config.service }}:${{ env.VERSION }}-dev
build-mobile:
build-mobile-staging:
name: Build / ${{ matrix.config.name }}
runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -124,6 +124,29 @@ jobs:
echo "Running E2E tests"
echo "Tests passed"
build-mobile-production:
name: Build / ${{ matrix.config.name }}
runs-on: ubuntu-latest
needs: [tests-e2e]
permissions:
contents: read
packages: write
strategy:
matrix:
include:
- config:
name: Android
- config:
name: iOS
- config:
name: Web
steps:
- name: Build App
run: |
echo "Running E2E tests"
echo "Tests passed"
deploy-production:
name: Deploy / Production
runs-on: ubuntu-latest
Expand Down Expand Up @@ -154,7 +177,7 @@ jobs:
publish-mobile:
name: Publish / ${{ matrix.config.name }}
runs-on: ubuntu-latest
needs: [deploy-production]
needs: [deploy-production, build-mobile-production]
permissions:
contents: read
packages: write
Expand Down

0 comments on commit 2a7b5a3

Please sign in to comment.