Skip to content

Rework integration test container #4

Rework integration test container

Rework integration test container #4

Workflow file for this run

name: integrator-image
on:
push:
branches:
- main
pull_request:
jobs:
changes:
name: Change detection
runs-on: ubuntu-latest
outputs:
integrator: ${{ steps.filter.outputs.integrator }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
integrator:
- 'docker/thehive4py-integrator/**'
build:
name: Build and push
needs: changes
if: ${{ needs.changes.outputs.integrator == 'true' }}
runs-on: ubuntu-latest
env:
THEHIVE_VERSION: 5.3.0
IMAGE_NAME: kamforka/thehive4py-integrator
steps:
- uses: actions/checkout@v4
- name: Set variables
id: variables
run: |
echo "image_fullname=${{ env.IMAGE_NAME }}:thehive-${{ env.THEHIVE_VERSION }}" >> $GITHUB_OUTPUT
echo "image_fullname_with_hash=$IMAGE_FULLNAME-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Build image
run: |
echo ${{ steps.variables.image_fullname }}
exit 1
docker build -t ${{ steps.variables.IMAGE_FULLNAME }} docker/thehive4-py-integrator
docker build -t ${{ needs.variables.IMAGE_FULLNAME_WITH_HASH }} docker/thehive4-py-integrator
- name: Push image
# if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker login -u ${DOCKER_USER} -p ${DOCKER_PASS}
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}