Add data ingestion mechanism #32
Workflow file for this run
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: Data ingestion | |
on: ["push", "workflow_dispatch"] | |
jobs: | |
data_ingestion: | |
environment: glvd-data-ingestion | |
name: data ingestion | |
runs-on: ubuntu-latest | |
env: | |
PGHOST: "${{ vars.PGHOST }}" | |
PGPORT: ${{ vars.PGPORT }} | |
PGUSER: ${{ vars.PGUSER }} | |
PGPASSWORD: ${{ secrets.PGPASSWORD }} | |
PGDATABASE: ${{ vars.PGDATABASE }} | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build image for data ingestion container | |
id: build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: container/Containerfile | |
load: true | |
- name: Run modified glvd container for data ingestion | |
run: > | |
docker run | |
--network host | |
--rm | |
--env PGHOST="$PGHOST" | |
--env PGPORT="$PGPORT" | |
--env PGUSER="$PGUSER" | |
--env PGPASSWORD="$PGPASSWORD" | |
--env PGDATABASE="$PGDATABASE" | |
${{ steps.build.outputs.imageid }} |