Skip to content

Commit c33849a

Browse files
authored
fix: trigger wheel and docker builds after tag creation (#19)
1 parent a53efb5 commit c33849a

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
permissions:
1313
contents: write
14+
actions: write
1415

1516
steps:
1617
- uses: actions/checkout@v4
@@ -39,3 +40,15 @@ jobs:
3940
--generate-notes
4041
env:
4142
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43+
44+
- name: Trigger wheel build
45+
run: |
46+
gh workflow run build-wheel.yml --ref "${{ steps.version.outputs.tag }}"
47+
env:
48+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49+
50+
- name: Trigger Docker image build
51+
run: |
52+
gh workflow run build-push-image.yml --ref "${{ steps.version.outputs.tag }}"
53+
env:
54+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)