Revert "Install mod_wsgi from updates-testing in service" (#2684) #1143
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: Rebuild & push images | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- stable | |
jobs: | |
build-and-push: | |
# To not run in forks | |
if: github.repository_owner == 'packit' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- dockerfile: files/docker/Dockerfile | |
image: packit-service | |
- dockerfile: files/docker/Dockerfile.worker | |
image: packit-worker | |
- dockerfile: files/docker/Dockerfile.tests | |
image: packit-service-tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install QEMU dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static | |
- name: Extract branch name and set tag | |
shell: bash | |
run: | | |
branch=${GITHUB_REF#refs/heads/} | |
tag="" | |
case $branch in | |
main) | |
tag="stg latest" | |
;; | |
stable) | |
tag="prod" | |
;; | |
esac | |
echo "branch=${branch}" >> $GITHUB_OUTPUT | |
unique_tag="${branch}-${GITHUB_SHA::7}-$(date +%s)" | |
echo "tag=${tag} ${unique_tag}" >> $GITHUB_OUTPUT | |
id: branch_tag | |
- name: Build Image | |
id: build-image | |
# https://github.com/marketplace/actions/buildah-build | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
dockerfiles: ${{ matrix.dockerfile }} | |
image: ${{ matrix.image }} | |
tags: ${{ steps.branch_tag.outputs.tag }} | |
archs: amd64, arm64 | |
# Uncomment once we stop using oc cluster up for tests | |
# oci: true | |
build-args: | | |
SOURCE_BRANCH=${{ steps.branch_tag.outputs.branch }} | |
- name: Push To Quay | |
# https://github.com/marketplace/actions/push-to-registry | |
uses: redhat-actions/push-to-registry@v2 | |
with: | |
image: ${{ steps.build-image.outputs.image }} | |
tags: ${{ steps.build-image.outputs.tags }} | |
registry: quay.io/packit | |
username: ${{ secrets.QUAY_IMAGE_BUILDER_USERNAME }} | |
password: ${{ secrets.QUAY_IMAGE_BUILDER_TOKEN }} |