Skip to content

fix: installation/requirements.txt to reduce vulnerabilities #49

fix: installation/requirements.txt to reduce vulnerabilities

fix: installation/requirements.txt to reduce vulnerabilities #49

Workflow file for this run

name: publish
on: [push]
jobs:
publish-gdag-images:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build GDAG Docker images
run: |
echo $CR_PAT | docker login ghcr.io -u matamorphosis --password-stdin
docker build -f GDAG.Dockerfile --tag ghcr.io/matamorphosis/gdag-appliance:latest .
docker build -f AuthFlow.Dockerfile --tag ghcr.io/matamorphosis/gdag-auth-flow:latest .
docker push ghcr.io/matamorphosis/gdag-appliance:latest
docker push ghcr.io/matamorphosis/gdag-auth-flow:latest
env:
CR_PAT: ${{ secrets.CR_PAT }}