/
githubmirror
/
coreos-installer
Обзор
Документация
Войти
/
githubmirror
/
coreos-installer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/containers.yml
34 строки
811 B
CoreOS Bot
Sync repo templates ⚙
10 фев 2026, 06:48
10 фев 2026, 06:48
d690620
Код
Авторство
О чём код?
# Maintained in https://github.com/coreos/repo-templates # Do not edit downstream. name: Container on: push: branches: [main] tags: ["v*"] pull_request: branches: [main] permissions: contents: read # avoid races when pushing containers built from main concurrency: group: ${{ github.workflow }}-${{ github.ref }} jobs: build-container: name: Build container image runs-on: ubuntu-latest steps: - name: Check out repository uses: actions/checkout@v6 - name: Build and push container uses: coreos/actions-lib/build-container@main with: credentials: ${{ secrets.QUAY_AUTH }} push: quay.io/coreos/coreos-installer arches: amd64 arm64 # Speed up PR CI by skipping non-amd64 pr-arches: amd64