We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cec45db commit ca7a302Copy full SHA for ca7a302
.github/workflows/ci.yaml
@@ -4,7 +4,7 @@ on:
4
pull_request:
5
push:
6
branches:
7
- - exp
+ - ci
8
- main
9
tags: ["**"]
10
@@ -63,7 +63,7 @@ jobs:
63
run: make _build
64
65
build-and-push-image:
66
- if: github.ref == 'refs/heads/exp' || startsWith(github.ref, 'refs/tags/')
+ if: github.ref == 'refs/heads/ci' || startsWith(github.ref, 'refs/tags/')
67
runs-on: ubuntu-latest
68
needs:
69
- test
@@ -75,7 +75,7 @@ jobs:
75
- name: Get image tag
76
id: image-tag
77
run: |
78
- if [[ "${{ github.ref }}" == 'refs/heads/exp' ]] ; then
+ if [[ "${{ github.ref }}" == 'refs/heads/ci' ]] ; then
79
echo tag=$(echo ${{ github.sha }} | cut -c1-10) >> $GITHUB_OUTPUT
80
elif [[ "${{ github.ref }}" == 'refs/tags/' ]] ; then
81
echo tag=$(echo "$GITHUB_REF_NAME" ) >> $GITHUB_OUTPUT
0 commit comments