Release: minor typo fix #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: Publish reqs-payload latest image on push to main | |
# When an push to `main` happens and changed the files under install/pre-install-payload/, | |
# build and push the multi-arch image to latest | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- install/pre-install-payload/** | |
env: | |
REGISTRY: quay.io | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log into registry ${{ env.REGISTRY }} | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ secrets.QUAY_ID }} | |
password: ${{ secrets.QUAY_SECRET }} | |
- name: Build and push to registry | |
run: | | |
cd install/pre-install-payload | |
make reqs-image |