Skip to content

Commit

Permalink
Merge pull request #5722 from MartinForReal/master
Browse files Browse the repository at this point in the history
Track2 sdk: add release pipeline for azclient
  • Loading branch information
k8s-ci-robot authored Mar 19, 2024
2 parents 194e800 + a2538ac commit 829ba07
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/release-azclient-trace.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release azclient trace
on:
workflow_dispatch:
push:
branches:
- master
paths:
- 'pkg/azclient/trace/*'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
tag_prefix: pkg/azclient/trace/v
github_token: ${{ secrets.GITHUB_TOKEN }}
29 changes: 29 additions & 0 deletions .github/workflows/release-azclient.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release azclient
on:
workflow_dispatch:
push:
branches:
- master
paths:
- 'pkg/azclient/*'
- '!pkg/azclient/configloader*'
- '!pkg/azclient/client-gen*'
- '!pkg/azclient/trace*'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
tag_prefix: pkg/azclient/v
github_token: ${{ secrets.GITHUB_TOKEN }}

25 changes: 25 additions & 0 deletions .github/workflows/release-configloader.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release azclient configloader
on:
workflow_dispatch:
push:
branches:
- master
paths:
- 'pkg/azclient/configloader/*'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag_prefix: pkg/azclient/configloader/v
2 changes: 1 addition & 1 deletion .github/workflows/update-vendor-license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
/kind testing
#### What this PR does / why we need it:
New release published.
go.sum is out of sync
#### Does this PR introduce a user-facing change?
```release-note
Expand Down

0 comments on commit 829ba07

Please sign in to comment.