Merge pull request #68 from 3scale-ops/release/re-release-as-0.9.0 #3
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: release-catalog | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- catalog/**/stable-channel.yaml | |
jobs: | |
catalog: | |
name: Build and push the catalog release image | |
runs-on: ubuntu-24.04 | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- uses: actions/cache@v4.1.2 | |
with: | |
key: ${{ runner.os }}-bin | |
path: ./bin | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to quay.io/3scale | |
uses: docker/login-action@v3 | |
with: | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
registry: quay.io | |
username: ${{ secrets.REGISTRY_USER }} | |
- name: Build and push the catalog container image | |
run: make catalog-push | |
- name: Build and push the current catalog container image as latest | |
run: make catalog-push-latest |