Skip to content

Commit

Permalink
1.8.1 (312)
Browse files Browse the repository at this point in the history
  • Loading branch information
denis15yo committed Sep 12, 2024
1 parent f48df47 commit 616cc54
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ jobs:
runs-on: macos-14

steps:
- uses: webfactory/ssh-agent@v0.5.4
with:
ssh-private-key: ${{ secrets.SSH_KEY }}

- name: Add SSH known hosts
run: |
ssh-keyscan bitbucket.org >> ~/.ssh/known_hosts
- uses: actions/checkout@v2
with:
submodules: 'recursive'
Expand All @@ -31,14 +39,8 @@ jobs:
cp -R $GITHUB_WORKSPACE /Users/telegram/
mv /Users/telegram/$(basename $GITHUB_WORKSPACE) /Users/telegram/telegram-ios
- uses: webfactory/ssh-agent@v0.5.4
with:
ssh-private-key: ${{ secrets.SSH_KEY }}

- name: New testflight build
run: |
ssh-keyscan bitbucket.org >> ~/.ssh/known_hosts
set -x
mkdir -p $BUILD_WORKING_DIR
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ jobs:
runs-on: macos-14

steps:
- uses: webfactory/ssh-agent@v0.5.4
with:
ssh-private-key: ${{ secrets.SSH_KEY }}

- name: Add SSH known hosts
run: |
ssh-keyscan bitbucket.org >> ~/.ssh/known_hosts
- uses: actions/checkout@v2
with:
submodules: 'recursive'
Expand All @@ -28,14 +36,8 @@ jobs:
cp -R $GITHUB_WORKSPACE /Users/telegram/
mv /Users/telegram/$(basename $GITHUB_WORKSPACE) /Users/telegram/telegram-ios
- uses: webfactory/ssh-agent@v0.5.4
with:
ssh-private-key: ${{ secrets.SSH_KEY }}

- name: New testflight build
run: |
ssh-keyscan bitbucket.org >> ~/.ssh/known_hosts
set -x
mkdir -p $BUILD_WORKING_DIR
Expand Down

0 comments on commit 616cc54

Please sign in to comment.