-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ZO-4513: Clone remaining repos with deploy keys
- Loading branch information
Showing
1 changed file
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -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 | ||
|