mirror of
https://github.com/coreos/prometheus-operator.git
synced 2026-02-05 06:45:27 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
64 lines
1.9 KiB
YAML
64 lines
1.9 KiB
YAML
name: publish
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- 'release-*'
|
|
- 'master'
|
|
- 'main'
|
|
tags:
|
|
- 'v*'
|
|
- '!pkg*'
|
|
|
|
jobs:
|
|
publish:
|
|
name: Publish container images
|
|
|
|
permissions:
|
|
id-token: write # needed to sign images with cosign.
|
|
packages: write # needed to push images to ghcr.io.
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Import environment variables from file
|
|
run: cat ".github/env" >> "$GITHUB_ENV"
|
|
- name: Reclaim disk space
|
|
run: |
|
|
docker image prune --force --all
|
|
sudo rm -rf /usr/share/dotnet
|
|
sudo rm -rf /usr/local/lib/android
|
|
- name: Install Go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: '${{ env.golang-version }}'
|
|
check-latest: true
|
|
- name: Install cosign
|
|
uses: sigstore/cosign-installer@main
|
|
- name: Check the Docker version
|
|
run: docker version
|
|
- name: Check the cosign version
|
|
run: cosign version
|
|
- name: Install crane
|
|
uses: imjasonh/setup-crane@v0.4
|
|
- name: Login to quay.io
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: quay.io
|
|
username: ${{ secrets.quay_username }}
|
|
password: ${{ secrets.quay_password }}
|
|
- name: Login to ghcr.io
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Cosign login
|
|
run: |
|
|
echo "${{ secrets.GITHUB_TOKEN }}" | cosign login -u ${{ github.repository_owner }} --password-stdin ghcr.io
|
|
echo "${{ secrets.quay_password }}" | cosign login -u ${{ secrets.quay_username }} --password-stdin quay.io
|
|
- name: Build images and push
|
|
run: ./scripts/push-docker-image.sh
|