Merge pull request #1041 from exasol/develop #70
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: Publish Docker Test Container | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- 'ci-release-test/**' | |
jobs: | |
publish-test-container: | |
runs-on: ubuntu-latest | |
environment: publish | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: 'recursive' | |
- name: Setup Python & Poetry Environment | |
uses: exasol/python-toolbox/.github/actions/[email protected] | |
with: | |
python-version: "3.10" | |
poetry-version: '1.8.2' | |
- name: Build TestContainer | |
run: poetry run exaslct build-test-container --force-rebuild | |
- name: Push TestContainer image | |
if: ${{ (github.ref == 'refs/heads/master') || (github.ref == 'refs/heads/main') }} | |
run: | | |
poetry run exaslct push-test-container --source-docker-username "$SECRET_DOCKER_USER_NAME" --target-docker-username "$SECRET_DOCKER_USER_NAME" --force-push true | |
env: # Set the secret as an input | |
SECRET_DOCKER_USER_NAME: ${{ secrets.DOCKER_USER_NAME }} | |
TARGET_DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} | |
SOURCE_DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} | |
- name: Push ci-release-test TestContainer image | |
if: ${{ (github.ref != 'refs/heads/master') && (github.ref != 'refs/heads/main') }} | |
run: | | |
poetry run exaslct push-test-container --source-docker-username "$SECRET_DOCKER_USER_NAME" --target-docker-username "$SECRET_DOCKER_USER_NAME" --force-push true --source-docker-tag-prefix ci_release_test --target-docker-tag-prefix ci_release_test | |
env: # Set the secret as an input | |
SECRET_DOCKER_USER_NAME: ${{ secrets.DOCKER_USER_NAME }} | |
TARGET_DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} | |
SOURCE_DOCKER_PASSWORD: ${{ secrets.DOCKER_TOKEN }} |