Skip to content

Commit

Permalink
missing env for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ypopovych committed Jun 27, 2023
1 parent 71aa488 commit aa7c455
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@ jobs:
run: sudo xcode-select -s /Applications/Xcode_14.0.app
- name: Build and Test SPM
run: swift test
env:
TEST_MNEMONIC: ${{ secrets.TEST_MNEMONIC }}
- name: Update Cocoa Pods repo
run: pod repo update
- name: Build and Test CocoaPods
run: pod lib lint --allow-warnings --fail-fast
env:
TEST_MNEMONIC: ${{ secrets.TEST_MNEMONIC }}
linux:
runs-on: ubuntu-latest
container:
Expand All @@ -24,3 +28,5 @@ jobs:
uses: actions/checkout@v3
- name: Build and Test
run: swift test
env:
TEST_MNEMONIC: ${{ secrets.TEST_MNEMONIC }}
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ jobs:
run: pod trunk push --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
TEST_MNEMONIC: ${{ secrets.TEST_MNEMONIC }}

0 comments on commit aa7c455

Please sign in to comment.