ci: GHA to build images #1
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: Release Images | |
on: | |
push: | |
tags: | |
- "*-d2iq.*" | |
# Because variables are not exported, they are not visible by child processes, e.g. make | |
env: | |
registry: ghcr.io/mesosphere | |
jobs: | |
release-controller-image: | |
name: Release Controller Image | |
runs-on: | |
- ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Login to container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.registry }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push container image | |
env: | |
IMAGE: ${{ env.registry }}/metallb/controller:${{ github.ref_name }} | |
run: docker buildx build -t ${{ env.IMAGE }} --push controller/ | |
release-speaker-image: | |
name: Release Speaker Image | |
runs-on: | |
- ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Login to container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.registry }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push container image | |
env: | |
IMAGE: ${{ env.registry }}/metallb/speaker:${{ github.ref_name }} | |
run: docker buildx build -t ${{ env.IMAGE }} --push speaker/ |