Update pkgvars #398
Workflow file for this run
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: Build Docker Image On Push (Both Tags and Branches) | |
env: | |
DOCKERHUB_USER_NAME: ${{ secrets.DOCKERHUB_USER_NAME }} | |
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
build_and_publish_images: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
image_type: | |
- latest | |
- alpine | |
- postgres_15 | |
- postgres_14 | |
- nightly | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Clone tools branch | |
run: git clone -b v0.8.30 --depth=1 https://github.com/citusdata/tools.git tools | |
- name: Install package dependencies | |
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources | |
- name: Install python requirements | |
run: python -m pip install -r tools/packaging_automation/requirements.txt | |
- name: DockerHub Login | |
run: docker login -u "${DOCKERHUB_USER_NAME}" -p "${DOCKERHUB_PASSWORD}" | |
- name: Build and publish docker images | |
run: | | |
python -m tools.packaging_automation.publish_docker \ | |
--github_ref "${GITHUB_REF}" \ | |
--pipeline_trigger_type "${GITHUB_EVENT_NAME}" \ | |
--image_type "${{ matrix.image_type }}" |