Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-fan1991 committed Aug 28, 2024
1 parent 0fea4ea commit 417d64c
Showing 1 changed file with 23 additions and 16 deletions.
39 changes: 23 additions & 16 deletions .github/workflows/ci-debug-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ jobs:
debug_build:
runs-on: [self-hosted, linux]
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
# - name: Checkout code
# uses: actions/checkout@v3
# with:
# fetch-depth: 0

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.2'
bundler-cache: true
# - name: Setup Ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: '3.1.2'
# bundler-cache: true

- name: Decode local properties
id: localProperties
uses: timheuer/[email protected]
with:
fileName: 'local.properties'
encodedString: ${{ secrets.LOCAL_PROPERTIES }}
# - name: Decode local properties
# id: localProperties
# uses: timheuer/[email protected]
# with:
# fileName: 'local.properties'
# encodedString: ${{ secrets.LOCAL_PROPERTIES }}

- run: cp "${{ steps.localProperties.outputs.filePath }}" "./"
# - run: cp "${{ steps.localProperties.outputs.filePath }}" "./"

- name: Decode service credentials file
id: serviceCredentialsFile
Expand All @@ -37,6 +37,10 @@ jobs:

- run: cp "${{ steps.serviceCredentialsFile.outputs.filePath }}" "./fastlane"

- name: Print service credentials (dev)
run: cat "./fastlane/service_credentials_file_dev.json"


- name: Decode google-services json file
id: googleServicesJsonFile
uses: timheuer/[email protected]
Expand All @@ -46,6 +50,9 @@ jobs:

- run: cp "${{ steps.googleServicesJsonFile.outputs.filePath }}" "./app/src/debug"

- name: Print service credentials (dev)
run: cat "./app/src/debug/google-services.json"

- name: check googleServicesJsonFile exist
run: ls -al "./app/src/debug"

Expand Down

0 comments on commit 417d64c

Please sign in to comment.