Skip to content

Commit

Permalink
Merge pull request #155 from openshift-service-mesh-bot/none-main-mer…
Browse files Browse the repository at this point in the history
…ge_upstream_main-38a843ce

Automator: merge upstream changes to openshift-service-mesh/sail-operator@main
  • Loading branch information
openshift-merge-bot[bot] authored Oct 24, 2024
2 parents 43043ce + 595be1f commit c77494b
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/nightly-images.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Nightly image build workflow

on:
schedule:
- cron: "0 3 * * *" # everyday at 3AM UTC

run-name: nightly-images

env:
GIT_USER: ${{ secrets.GIT_USER }}
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Login to quay.io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USER }}
password: ${{ secrets.QUAY_PWD }}

- uses: actions/checkout@v4

- name: Build and push nightly operator image
run: |
make docker-buildx \
-e NIGHTLY=true
- name: Publish nigthly bundle in OpenShift OperatorHub
run: |
make bundle-publish-nightly \
-e GIT_CONFIG_USER_NAME="$GIT_CONFIG_USER_NAME" \
-e GIT_CONFIG_USER_EMAIL="$GIT_CONFIG_USER_EMAIL"
env:
GIT_CONFIG_USER_NAME: "${{ github.actor }}"
GIT_CONFIG_USER_EMAIL: "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"

0 comments on commit c77494b

Please sign in to comment.