Skip to content

Commit

Permalink
Merge pull request #4 from bococ/feature/devops
Browse files Browse the repository at this point in the history
fix: ci main tag Analyzing conditions
  • Loading branch information
whg517 authored Oct 18, 2023
2 parents ea94040 + b41f221 commit ab52664
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
uses: docker/setup-qemu-action@v2

# 设置 Docker Buildx,用于构建多平台的 Docker 镜像
- name: Set up Docker Buildx
- name: Set up Build
uses: docker/setup-buildx-action@v2
- run: |
make docker-build
make build
linting:
name: Lint Code Base
Expand All @@ -55,7 +55,7 @@ jobs:
MARKDOWN_CONFIG_FILE: .markdownlint.yml

main:
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'bococ/redis-operator'
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'zncdata-labs/spark-k8s-operator'
runs-on: ubuntu-latest
needs:
- build
Expand All @@ -82,7 +82,7 @@ jobs:
make bundle-buildx
tags:
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && github.repository == 'bococ/redis-operator'
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && github.repository == 'zncdata-labs/spark-k8s-operator'
runs-on: ubuntu-latest
needs:
- build
Expand Down

0 comments on commit ab52664

Please sign in to comment.