Skip to content

Commit

Permalink
Use the new "Prepare release" GitHub Actions workflow (#683)
Browse files Browse the repository at this point in the history
We now have a new reusable GitHub Actions workflow for preparing a new
classic buildpack release:
https://github.com/heroku/languages-github-actions/blob/main/.github/workflows/_classic-buildpack-prepare-release.yml

This workflow works the same as the CNB version, except it does not
need any version bump input, since we only every increment classic
buildpack versions by one.

Should any custom file changes be required as part of the PHP classic
buildpack release process in the future, a bash command/commands can
be passed via the workflow's `custom_update_command` option.

GUS-W-14905318.
  • Loading branch information
edmorley authored Feb 1, 2024
1 parent 8fc5d04 commit e524787
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Prepare Release

on:
workflow_dispatch:

# Disable all GITHUB_TOKEN permissions, since the GitHub App token is used instead.
permissions: {}

jobs:
prepare-release:
uses: heroku/languages-github-actions/.github/workflows/_classic-buildpack-prepare-release.yml@latest
secrets: inherit

0 comments on commit e524787

Please sign in to comment.