Build all releases/images
diff --git a/.github/workflows/test-xena.yml b/.github/workflows/test-xena.yml
new file mode 100644
index 0000000..db94ea1
--- /dev/null
+++ b/.github/workflows/test-xena.yml
@@ -0,0 +1,380 @@
+name: test-xena
+'on':
+  pull_request: {}
+  push:
+    branches:
+    - main
+jobs:
+  build-images:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v3.0.2
+    - uses: docker/setup-qemu-action@v2.0.0
+    - uses: docker/setup-buildx-action@v2.0.0
+    - uses: docker/login-action@v2.0.0
+      with:
+        registry: quay.io
+        username: ${{ secrets.QUAY_USERNAME }}
+        password: ${{ secrets.QUAY_ROBOT_TOKEN }}
+    - name: Build OpenStack Cinder
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=cinder
+
+          PROJECT_REF=b2caec7696817e02b0763d8b0d4f5d1b7f0b903e
+
+          PROFILES=ceph qemu
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/cinder:b2caec7696817e02b0763d8b0d4f5d1b7f0b903e
+    - name: Build OpenStack Heat
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=heat
+
+          PROJECT_REF=ead7cd61bd685ea46dd21c4ef3ea6b3fde273c10
+
+          PROFILES=
+
+          DIST_PACKAGES=curl
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/heat:ead7cd61bd685ea46dd21c4ef3ea6b3fde273c10
+    - name: Build OpenStack Senlin
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=senlin
+
+          PROJECT_REF=28f8abc29a966d41f8b4502d1fc7432f86b14bea
+
+          PROFILES=
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/senlin:28f8abc29a966d41f8b4502d1fc7432f86b14bea
+    - name: Build OpenStack Octavia
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=octavia
+
+          PROJECT_REF=bda4d7160aebf7549d72b049c8dca53f7d4dedb5
+
+          PROFILES=
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/octavia:bda4d7160aebf7549d72b049c8dca53f7d4dedb5
+    - name: Build OpenStack Barbican
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=barbican
+
+          PROJECT_REF=bb2779473f786f3bb7b84bc4f445089da8cbfe88
+
+          PROFILES=
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/barbican:bb2779473f786f3bb7b84bc4f445089da8cbfe88
+    - name: Build OpenStack Designate
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=designate
+
+          PROJECT_REF=410c1e8d60a6b3844050dd4d3ecc46f640356bfb
+
+          PROFILES=
+
+          DIST_PACKAGES=bind9utils
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/designate:410c1e8d60a6b3844050dd4d3ecc46f640356bfb
+    - name: Build OpenStack Nova
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64,linux/arm64
+        build-args: 'RELEASE=xena
+
+          PROJECT=nova
+
+          PROJECT_REF=62e1a621d19e8833a18afdba86de7f8334171c63
+
+          PROFILES=ceph openvswitch configdrive qemu migration
+
+          DIST_PACKAGES=ovmf qemu-efi-aarch64
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/nova:62e1a621d19e8833a18afdba86de7f8334171c63
+    - name: Build OpenStack Neutron
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64,linux/arm64
+        build-args: 'RELEASE=xena
+
+          PROJECT=neutron
+
+          PROJECT_REF=74f127973831c9c5f889017b3b627bd9940e37a6
+
+          PROFILES=openvswitch vpn
+
+          DIST_PACKAGES=jq ethtool lshw
+
+          PIP_PACKAGES=neutron-vpnaas'
+        tags: quay.io/vexxhost/neutron:74f127973831c9c5f889017b3b627bd9940e37a6
+    - name: Build OpenStack Monasca-Notification
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=monasca-notification
+
+          PROJECT_REF=a94f013ff4addceb93ab556b666f63da7ea820e5
+
+          PROFILES=
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/monasca-notification:a94f013ff4addceb93ab556b666f63da7ea820e5
+    - name: Build OpenStack Monasca-Agent
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=monasca-agent
+
+          PROJECT_REF=284233aa9e53601548ae2ec435331b59974aa5a7
+
+          PROFILES=
+
+          DIST_PACKAGES=iproute2 libvirt-clients lshw
+
+          PIP_PACKAGES=libvirt-python python-glanceclient python-neutronclient python-novaclient
+          py3nvml'
+        tags: quay.io/vexxhost/monasca-agent:284233aa9e53601548ae2ec435331b59974aa5a7
+    - name: Build OpenStack Keystone
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=keystone
+
+          PROJECT_REF=e772caa58ec7afdef4bd5fb58e44dc21a78c237b
+
+          PROFILES=apache ldap openidc
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/keystone:e772caa58ec7afdef4bd5fb58e44dc21a78c237b
+    - name: Build OpenStack Horizon
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=horizon
+
+          PROJECT_REF=48b702adf75b7f19420df578d2bf9bf813099af5
+
+          PROFILES=apache
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES=designate-dashboard heat-dashboard ironic-ui magnum-ui neutron-vpnaas-dashboard
+          octavia-dashboard senlin-dashboard monasca-ui'
+        tags: quay.io/vexxhost/horizon:48b702adf75b7f19420df578d2bf9bf813099af5
+    - name: Build OpenStack Monasca-Api
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=monasca-api
+
+          PROJECT_REF=44956801556b79c14373aa533df4debbd1da0ad9
+
+          PROFILES=apache influxdb
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/monasca-api:44956801556b79c14373aa533df4debbd1da0ad9
+    - name: Build OpenStack Ironic
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=ironic
+
+          PROJECT_REF=3f624e5caa83acf9b98443cf32cb0cd69143c6e2
+
+          PROFILES=ipxe ipmi qemu tftp
+
+          DIST_PACKAGES=ethtool lshw iproute2
+
+          PIP_PACKAGES=python-dracclient sushy'
+        tags: quay.io/vexxhost/ironic:3f624e5caa83acf9b98443cf32cb0cd69143c6e2
+    - name: Build OpenStack Glance
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=glance
+
+          PROJECT_REF=cbe6522e67c2e437e600b4fb153a1d048a310282
+
+          PROFILES=ceph
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/glance:cbe6522e67c2e437e600b4fb153a1d048a310282
+    - name: Build OpenStack Magnum
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=magnum
+
+          PROJECT_REF=82a22387b91bb3c77261f42535be9c9d6b53a853
+
+          PROFILES=
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/magnum:82a22387b91bb3c77261f42535be9c9d6b53a853
+    - name: Build OpenStack Monasca-Persister
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=monasca-persister
+
+          PROJECT_REF=19d29bfab93206a7d7652037465d449895b7d8ce
+
+          PROFILES=influxdb
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES='
+        tags: quay.io/vexxhost/monasca-persister:19d29bfab93206a7d7652037465d449895b7d8ce
+    - name: Build OpenStack Placement
+      uses: docker/build-push-action@v3.1.1
+      with:
+        context: images/openstack
+        cache-from: type=gha
+        cache-to: type=gha,mode=max
+        push: true
+        platforms: linux/amd64
+        build-args: 'RELEASE=xena
+
+          PROJECT=placement
+
+          PROJECT_REF=f96984abd48f4d938d0fff0bab9b12ed933e320e
+
+          PROFILES=apache
+
+          DIST_PACKAGES=
+
+          PIP_PACKAGES=httplib2'
+        tags: quay.io/vexxhost/placement:f96984abd48f4d938d0fff0bab9b12ed933e320e