Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Mismatch Finder to Production #922

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/deploy-app-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Syncing code to Toolforge-Staging
uses: appleboy/scp-action@master
with:
host: ${{ secrets.HOST }}
host: ${{ secrets.HOST_ALT }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
Expand All @@ -48,10 +48,11 @@ jobs:
- name: Deploy code
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
host: ${{ secrets.HOST_ALT }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
command_timeout: 30m
script: |
# Make sure ~tools.mismatch-finder-staging/mismatch-finder-repo-next is group writable
become mismatch-finder-staging chmod -R g+rwx ~tools.mismatch-finder-staging/mismatch-finder-repo-next
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/deploy-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Syncing code to Toolforge-Production
uses: appleboy/scp-action@master
with:
host: ${{ secrets.HOST }}
host: ${{ secrets.HOST_ALT }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
Expand All @@ -46,10 +46,11 @@ jobs:
- name: Deploy code
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
host: ${{ secrets.HOST_ALT }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
command_timeout: 30m
script: |
# Make sure ~tools.mismatch-finder/mismatch-finder-repo is group writable
become mismatch-finder chmod -R g+rwx ~tools.mismatch-finder/mismatch-finder-repo
Expand Down