Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invoke packaging workflow to update after release #1186

Merged
merged 3 commits into from May 1, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 20 additions & 2 deletions .github/workflows/03-post-release.yaml
@@ -1,12 +1,12 @@
name: 03-create_release_digests
name: 03-post_release
on:
release:
types: [published]
branches:
- 'master'
- 'main'
jobs:
create_release_digests:
post_release:
name: Creating digests
runs-on: ubuntu-latest
steps:
Expand All @@ -15,3 +15,21 @@ jobs:
with:
hash-type: sha1
file-name: kubescape-release-digests
- name: Invoke workflow to update packaging
HollowMan6 marked this conversation as resolved.
Show resolved Hide resolved
uses: benc-uk/workflow-dispatch@v1
with:
workflow: release.yml
repo: kubescape/packaging
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
- name: Invoke workflow to update homebrew tap
uses: benc-uk/workflow-dispatch@v1
with:
workflow: release.yml
repo: kubescape/homebrew-tap
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
- name: Invoke workflow to update github action
uses: benc-uk/workflow-dispatch@v1
with:
workflow: release.yml
repo: kubescape/github-action
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}