-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create reusable-docker-deploy.yml creating a reusable deploy job * Update reusable-docker-deploy.yml
- Loading branch information
1 parent
7beb01c
commit f199f7c
Showing
1 changed file
with
46 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Reusable deploy | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
required: true | ||
type: string | ||
jobs: | ||
deploy: | ||
name: deploy image | ||
runs-on: ubuntu-latest | ||
environment: ${{ inputs.environment }} | ||
|
||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: install ssh keys | ||
run: | | ||
install -m 600 -D /dev/null ~/.ssh/id_rsa | ||
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa | ||
ssh-keyscan -H ${{ vars.SSH_HOST }} > ~/.ssh/known_hosts | ||
- name: create .env | ||
run: | | ||
ssh ${{ vars.SSH_USER }}@${{ vars.SSH_HOST }} "cd /usr/config && \\ | ||
echo MONGO_DB_URI=${{ secrets.MONGO_URI }} | sudo tee .env && \\ | ||
echo MONGO_DB_NAME=${{ secrets.MONGO_DB_NAME }} | sudo tee -a .env && \\ | ||
echo OPEN_AQ_API_URL=${{ secrets.OPEN_AQ_API_URL }} | sudo tee -a .env && \\ | ||
echo OPEN_AQ_API_KEY=${{ secrets.OPEN_AQ_API_KEY }} | sudo tee -a .env && \\ | ||
echo CDSAPI_URL=${{ secrets.CDSAPI_URL }} | sudo tee -a .env && \\ | ||
echo CDSAPI_KEY=${{ secrets.CDSAPI_KEY }} | sudo tee -a .env && \\ | ||
exit" | ||
- name: copy compose | ||
run: | | ||
scp deployment/compose.yaml ${{ vars.SSH_USER }}@${{ vars.SSH_HOST }}:/usr/config | ||
- name: activate docker | ||
run: | | ||
ssh ${{ vars.SSH_USER }}@${{ vars.SSH_HOST }} "cd /usr/config && \\ | ||
echo ${{ secrets.GITHUB_TOKEN}} | sudo docker login --username ${{ github.actor }} --password-stdin ghcr.io | ||
sudo docker compose pull | ||
sudo docker compose up --force-recreate --build -d | ||
sudo docker image prune -f | ||
exit" | ||
- name: clean up | ||
run: | | ||
rm -rf ~/.ssh |