Skip to content

Commit ca7a302

Browse files
committed
apply in ci branch
1 parent cec45db commit ca7a302

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
push:
66
branches:
7-
- exp
7+
- ci
88
- main
99
tags: ["**"]
1010

@@ -63,7 +63,7 @@ jobs:
6363
run: make _build
6464

6565
build-and-push-image:
66-
if: github.ref == 'refs/heads/exp' || startsWith(github.ref, 'refs/tags/')
66+
if: github.ref == 'refs/heads/ci' || startsWith(github.ref, 'refs/tags/')
6767
runs-on: ubuntu-latest
6868
needs:
6969
- test
@@ -75,7 +75,7 @@ jobs:
7575
- name: Get image tag
7676
id: image-tag
7777
run: |
78-
if [[ "${{ github.ref }}" == 'refs/heads/exp' ]] ; then
78+
if [[ "${{ github.ref }}" == 'refs/heads/ci' ]] ; then
7979
echo tag=$(echo ${{ github.sha }} | cut -c1-10) >> $GITHUB_OUTPUT
8080
elif [[ "${{ github.ref }}" == 'refs/tags/' ]] ; then
8181
echo tag=$(echo "$GITHUB_REF_NAME" ) >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)