We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c0835e commit efc73a9Copy full SHA for efc73a9
1 file changed
.github/workflows/ci.yml
@@ -6,7 +6,7 @@ on:
6
branches:
7
- main
8
tags:
9
- - "*"
+ - "intar-cli-v*"
10
workflow_dispatch:
11
12
jobs:
@@ -123,7 +123,7 @@ jobs:
123
124
build:
125
name: Build - ${{ matrix.platform.os-name }}
126
- if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
+ if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/intar-cli-v')
127
needs: prebuild-agents
128
env:
129
INTAR_AGENT_X86_64_PATH: ${{ github.workspace }}/prebuilt-agents/intar-agent-x86_64
@@ -225,7 +225,7 @@ jobs:
225
226
release:
227
name: Release
228
- if: startsWith(github.ref, 'refs/tags/')
+ if: startsWith(github.ref, 'refs/tags/intar-cli-v')
229
needs: build
230
runs-on: ubuntu-24.04
231
permissions:
0 commit comments