Build and publish UI docker image #1
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
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 |