From 7e77ca8bb5a6c0bc39dc08a0d3c019924f7a1dae Mon Sep 17 00:00:00 2001 From: Sven Date: Wed, 2 Oct 2024 17:29:34 +0200 Subject: [PATCH] Issue #3673: Remove temporary file. --- .../docker_image_builder_tmp-latest11.yml | 87 ------------------- 1 file changed, 87 deletions(-) delete mode 100644 .github/workflows/docker_image_builder_tmp-latest11.yml diff --git a/.github/workflows/docker_image_builder_tmp-latest11.yml b/.github/workflows/docker_image_builder_tmp-latest11.yml deleted file mode 100644 index f572c4dce..000000000 --- a/.github/workflows/docker_image_builder_tmp-latest11.yml +++ /dev/null @@ -1,87 +0,0 @@ -%YAML 1.1 ---- - -# Workflow for building devel Docker images and pushing them to Docker hub. -# See docker_image_builder_rel.yml for the workflow that builds -# the release Docker images. -name: 'DockerImageBuilderTmpLatest11' - -on: - - # Build a devel Docker image whenever there is a push into the listed branches. - push: - branches: - - rel-11_0 - -jobs: - BuildDockerImage: - - runs-on: 'ubuntu-latest' - - strategy: - - # create different images - matrix: - target: [ 'otobo-web', 'otobo-elasticsearch', 'otobo-nginx-webproxy', 'otobo-nginx-kerberos-webproxy', 'otobo-selenium-chrome' ] - include: - - - target: 'otobo-web' - dockerfile: 'otobo.web.dockerfile' - context: '.' - repository: 'rotheross/otobo' - - - target: 'otobo-elasticsearch' - dockerfile: 'otobo.elasticsearch.dockerfile' - context: 'scripts/elasticsearch' - repository: 'rotheross/otobo-elasticsearch' - - - target: 'otobo-nginx-webproxy' - dockerfile: 'otobo.nginx.dockerfile' - context: 'scripts/nginx' - repository: 'rotheross/otobo-nginx-webproxy' - - - target: 'otobo-nginx-kerberos-webproxy' - dockerfile: 'otobo.nginx.dockerfile' - context: 'scripts/nginx' - repository: 'rotheross/otobo-nginx-kerberos-webproxy' - - - target: 'otobo-selenium-chrome' - dockerfile: 'otobo.selenium-chrome.dockerfile' - context: 'scripts/test/sample' - repository: 'rotheross/otobo-selenium-chrome' - - steps: - - - - # Store some variables in an environment file so that - # they can be used in the later steps. - name: Setup - run: | - branch="rel-11_0_6" # e.g rel-10_0 - docker_tag="latest-11_0" - build_date=$(date -u +'%Y-%m-%dT%H:%M:%SZ') - ( - echo "otobo_branch=$branch" - echo "otobo_docker_tag=$docker_tag" - echo "otobo_ref=${{ matrix.repository }}:$docker_tag" - echo "otobo_build_date=$build_date" - echo "otobo_commit=${{ github.sha }}" - ) >> $GITHUB_ENV - - - name: 'check out the relevant OTOBO branch' - uses: actions/checkout@v4 - - - - # login to Docker Hub before the composite action - # this avoids that secrets have to be passed - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - - - # Uses a local composite action. - # The repository must already be checked out. - name: 'Run local composite action' - uses: ./.github/actions/docker_image_builder