-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add language family workflow to publish all releases.
- only manual dispatch for now until we are comfortable auto-publishing language family buildpacks.
- Loading branch information
1 parent
14c53b3
commit ddd137c
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Publish Draft Releases | ||
|
||
on: | ||
workflow_dispatch: {} | ||
|
||
concurrency: | ||
group: publish-release | ||
|
||
jobs: | ||
publish: | ||
name: Publish | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Publish Draft Release With Highest Semantic Version | ||
id: drafts | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }} | ||
uses: paketo-buildpacks/github-config/actions/release/publish-drafts@main | ||
with: | ||
repo: ${{ github.repository }} | ||
|
||
failure: | ||
name: Alert on Failure | ||
runs-on: ubuntu-22.04 | ||
needs: [ publish ] | ||
if: ${{ always() && needs.publish.result == 'failure' }} | ||
steps: | ||
- name: File Failure Alert Issue | ||
uses: paketo-buildpacks/github-config/actions/issue/file@main | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
repo: ${{ github.repository }} | ||
label: "failure:release" | ||
comment_if_exists: true | ||
issue_title: "Failure: Publish draft releases" | ||
issue_body: | | ||
Publish All Draft Releases workflow [failed](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}). | ||
comment_body: | | ||
Another failure occurred: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} |