Skip to content

Commit

Permalink
ZO-4513: Clone remaining repos with deploy keys
Browse files Browse the repository at this point in the history
  • Loading branch information
wosc committed Feb 5, 2024
1 parent 2d118da commit 54bc4dd
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions .github/workflows/testrunner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,37 @@ jobs:
# Has been added manually (both the key in vivi-deployment and
# the GHA secret in vivi)
ssh-key: ${{secrets.DEPLOY_KEY_DEPLOYMENT}}
- uses: ZeitOnline/[email protected]
with:
project_name: ${{env.project}}
environment: staging
gar_docker_auth: true # for docker pull dav-server
vault_export_token: true

- name: checkout vivi
run: |
mkdir -p deployment/work/source
ln -s $PWD deployment/work/source/vivi
# Keys have been added manually (both the key in the target repo and
# the GHA+Dependabot secret in vivi and vivi-deployment)
- name: checkout zeit.jabber
uses: actions/[email protected]
with:
repository: ZeitOnline/zeit.jabber
path: deployment/work/source/zeit.jabber
ssh-key: ${{secrets.DEPLOY_KEY_JABBER}}
- name: checkout zeit.ldap
uses: actions/[email protected]
with:
repository: ZeitOnline/zeit.ldap
path: deployment/work/source/zeit.ldap
ssh-key: ${{secrets.DEPLOY_KEY_LDAP}}
- name: checkout zeit.newsimport
uses: actions/[email protected]
with:
repository: ZeitOnline/zeit.newsimport
path: deployment/work/source/zeit.newsimport
ssh-key: ${{secrets.DEPLOY_KEY_NEWSIMPORT}}

- uses: actions/[email protected]
with:
Expand All @@ -61,8 +92,6 @@ jobs:
- name: ./batou deploy local
run: |
mkdir -p deployment/work/source
ln -s $PWD deployment/work/source/vivi
cd deployment
./batou deploy gha
Expand Down

0 comments on commit 54bc4dd

Please sign in to comment.