Skip to content

Include url when warning if using default data app #11

Include url when warning if using default data app

Include url when warning if using default data app #11

Workflow file for this run

name: Build IDS algorithm
on:
push:
# Sequence of patterns matched against refs/heads
branches:
- main
- 'release/**'
tags:
- 'v*.*.*'
pull_request:
branches: [ main ]
env:
REGISTRY: ghcr.io
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# - name: Lint with flake8
# run: |
# # stop the build if not following PEP8 guidelines
# flake8 .
containerize:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: downcase REPO
run: |
echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container for not main
id: docker_build
uses: docker/build-push-action@v2
if: steps.extract_branch.outputs.branch != 'main' && github.ref_type == 'branch'
with:
context: ./
push: true
tags: ghcr.io/${{ env.REPO }}:${{ steps.extract_branch.outputs.branch }}
- name: Build container for main
id: docker_build_main
uses: docker/build-push-action@v2
if: steps.extract_branch.outputs.branch == 'main' && github.ref_type == 'branch'
with:
context: ./
push: true
tags: ghcr.io/${{ env.REPO }}:${{ steps.extract_branch.outputs.branch }}, ghcr.io/${{ env.REPO }}:latest
- name: Build container for tag
if: github.ref_type == 'tag'
uses: docker/build-push-action@v2
with:
context: ./
push: true
tags: ${{ env.REGISTRY }}/${{ env.REPO }}:${{ github.ref_name }}