Update devel_images.yml #20
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/Push Development Images | |
env: | |
LC_ALL: "C.UTF-8" # prevent ERROR: Ansible could not initialize the preferred locale: unsupported locale setting | |
on: | |
push: | |
branches: | |
- devel | |
- release_* | |
- feature_* | |
jobs: | |
push-development-images: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
permissions: | |
packages: write | |
contents: read | |
strategy: | |
matrix: | |
build-targets: | |
- image-name: awx_devel | |
make-target: docker-compose-buildx | |
- image-name: awx_kube_devel | |
make-target: awx-kube-dev-buildx | |
- image-name: awx | |
make-target: awx-kube-buildx | |
steps: | |
- name: Skipping build of awx image for non-awx repository | |
run: | | |
if [[ "${{ matrix.build-targets.image-name }}" == "awx" ]]; then | |
if ! [[ "${{ github.repository }}" == */awx ]] ; then | |
echo "Skipping build of awx image for non-awx repository" | |
exit 0 | |
fi | |
fi | |
- uses: actions/checkout@v3 | |
- name: Get python version from Makefile | |
run: echo py_version=`make PYTHON_VERSION` >> $GITHUB_ENV | |
- name: Set lower case owner name | |
run: | | |
echo "DEV_DOCKER_TAG_BASE=ghcr.io/${OWNER,,}" >> $GITHUB_ENV | |
echo "COMPOSE_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
env: | |
OWNER: '${{ github.repository_owner }}' | |
- name: Install python ${{ env.py_version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.py_version }} | |
- name: Log in to registry | |
run: | | |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | |
- name: Build and push AWX development environment images | |
run: | | |
make ${{ matrix.build-targets.make-target }} |