Skip to content

Commit

Permalink
Update Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
PSchmiedmayer committed Dec 2, 2024
1 parent 8b21a2f commit 87d5313
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
push:
branches:
- main
- feature/deployemnt
workflow_dispatch:
inputs:
environment:
Expand Down Expand Up @@ -50,7 +51,8 @@ jobs:
id: determineenvironment
run: |
if [[ -z "${{ inputs.environment }}" ]]; then
echo "environment=staging" >> $GITHUB_OUTPUT
# echo "environment=staging" >> $GITHUB_OUTPUT
echo "environment=internal" >> $GITHUB_OUTPUT
else
echo "environment=${{ inputs.environment }}" >> $GITHUB_OUTPUT
fi
Expand All @@ -65,13 +67,13 @@ jobs:
- run: |
echo "Injecting Environment Variables In Deployment Workflow:"
echo "appidentifier: ${{ vars.APP_IDENTIFIER }}"
buildtestandanalyze:
uses: ./.github/workflows/build-test-analyze.yml
secrets: inherit
# buildtestandanalyze:
# uses: ./.github/workflows/build-test-analyze.yml
# secrets: inherit
googleplayinternal:
name: Upload App to Google Play - Internal
runs-on: ubuntu-latest
needs: buildtestandanalyze
# needs: buildtestandanalyze
environment: ${{ needs.determineenvironment.outputs.environment }}
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
name: Pull Request

on:
pull_request:
# pull_request:
workflow_dispatch:

concurrency:
Expand Down

0 comments on commit 87d5313

Please sign in to comment.