mirror of
https://github.com/containers/podman.git
synced 2025-07-02 16:57:24 +08:00
Trigger podman.io version bump from release action
Our release is created by a GitHub action, and GitHub prevents workflows from running on events that were caused by other workflows to prevent unlimited recursion. To get around this, use a reusable workflow to trigger the podman.io version bump from the release action. Signed-off-by: Ashley Cui <acui@redhat.com>
This commit is contained in:
9
.github/workflows/release.yml
vendored
9
.github/workflows/release.yml
vendored
@ -345,3 +345,12 @@ jobs:
|
|||||||
to: Podman List <podman@lists.podman.io>
|
to: Podman List <podman@lists.podman.io>
|
||||||
from: ${{secrets.ACTION_MAIL_SENDER}}
|
from: ${{secrets.ACTION_MAIL_SENDER}}
|
||||||
body: file://./email_body.txt
|
body: file://./email_body.txt
|
||||||
|
|
||||||
|
updatepodmanio:
|
||||||
|
name: Update podman.io
|
||||||
|
uses: ./.github/workflows/update-podmanio.yml
|
||||||
|
needs: [check, release]
|
||||||
|
if: needs.check.outputs.buildonly == 'false'
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
version: ${{ needs.check.outputs.version }}
|
||||||
|
@ -212,7 +212,7 @@ spelled with complete minutiae.
|
|||||||
* shasums
|
* shasums
|
||||||
1. An email should have been sent to the [podman](mailto:podman@lists.podman.io) mailing list.
|
1. An email should have been sent to the [podman](mailto:podman@lists.podman.io) mailing list.
|
||||||
Keep an eye on it make sure the email went through to the list.
|
Keep an eye on it make sure the email went through to the list.
|
||||||
1. After the release action is run, an action to bump the Podman version on podman.io will run. This action will open a PR if a non-rc latest version is released. Go to the podman.io repo and merge the PR opened by this action, if needed.
|
1. The release action will also bump the Podman version on podman.io. It will open a PR if a non-rc latest version is released. Go to the [podman.io](https://github.com/containers/podman.io) repo and merge the PR opened by this action, if needed.
|
||||||
1. After the tag is pushed, an action to bump to -dev will run. A PR will be opened for this bump. Merge this PR if needed.
|
1. After the tag is pushed, an action to bump to -dev will run. A PR will be opened for this bump. Merge this PR if needed.
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user