Skip to content

Commit

Permalink
Update ssh key
Browse files Browse the repository at this point in the history
  • Loading branch information
longbmk committed Apr 23, 2024
1 parent 45370fe commit eae13a1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/auto_test_android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
# Checkout code and get packages.
- name: Checkout code
uses: actions/checkout@v3
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_ASSETS_KEY }}
# Set build number
- name: Set env
run: |
Expand Down Expand Up @@ -82,7 +85,7 @@ jobs:
cat .env
- name: Submoudles update
run: git submodule update --init --recursive
run: git -c submodule update --init --recursive
- run: flutter pub cache repair
- run: flutter pub get
# Build app
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/auto_test_ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
echo "FLUTTER_VERSION_CODE=10" >> $GITHUB_ENV
echo "BRANCH_KEY=${{ secrets.BRANCH_KEY }}" >> $GITHUB_ENV
echo "BRANCH_KEY_TEST=${{ secrets.BRANCH_KEY_TEST }}" >> $GITHUB_ENV
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_ASSETS_KEY }}
- name: Create env file
run: |
touch .env
Expand All @@ -30,7 +33,7 @@ jobs:
cat .env
- name: Submoudles update
run: git submodule update --init --recursive
run: git -c submodule update --init --recursive
- run: flutter pub cache repair
- run: flutter pub get
# Build app
Expand Down

0 comments on commit eae13a1

Please sign in to comment.