-
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.
Merge branch 'main' into mnyamunda/toggle-button-update
- Loading branch information
Showing
17 changed files
with
892 additions
and
59 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,15 @@ | ||
# Use LF for all text files | ||
* text eol=lf | ||
|
||
# Image files are auto detected | ||
*.gif -text | ||
*.jpg -text | ||
*.jpeg -text | ||
*.pdf -text | ||
*.png -text | ||
*.webp -text | ||
|
||
# Binary data files | ||
*.db binary | ||
*.grib binary | ||
*.idx binary |
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
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-${{ inputs.environment }}.yaml ${{ vars.SSH_USER }}@${{ vars.SSH_HOST }}:/usr/config/compose.yaml | ||
- 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 |
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,36 @@ | ||
name: Build and publish UI docker image | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
required: true | ||
type: string | ||
jobs: | ||
publish_image: | ||
runs-on: ubuntu-latest | ||
environment: ${{ inputs.environment }} | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: lowercase the repository name | ||
run: | | ||
echo "REPO=${GITHUB_REPOSITORY@L}" >> "${GITHUB_ENV}" | ||
- name: login | ||
run: | | ||
echo ${{ secrets.GITHUB_TOKEN}} | docker login --username ${{ github.actor }} --password-stdin ghcr.io | ||
- name: build | ||
run: | | ||
cd air-quality-ui | ||
docker build . -t ghcr.io/${REPO}/vairify-frontend-${{ inputs.environment }}:latest \ | ||
--build-arg VITE_AIR_QUALITY_API_URL=${{ vars.VAIRIFY_API_URL }} \ | ||
--build-arg VITE_AIR_QUALITY_UI_URL=${{ vars.VAIRIFY_UI_URL }} | ||
- name: publish | ||
run: | | ||
docker push ghcr.io/${REPO}/vairify-frontend-${{ inputs.environment }}:latest |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.