📋 @acodeninja is publishing a new release on main #39
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
name: publish | |
run-name: 📋 @${{ github.triggering_actor }} is publishing a new release on ${{ github.ref_name }} | |
on: | |
workflow_run: | |
workflows: [ quality-checks ] | |
branches: [ main ] | |
types: [ completed ] | |
env: | |
REPO: ghcr.io/${{ github.repository_owner }} | |
jobs: | |
enumerate-buildpacks: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
outputs: | |
buildpacks: ${{ steps.buildpacks.outputs.list }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: buildpacks | |
run: echo "list=$(find -L . -name 'buildpack.toml' | sed -r 's/\/buildpack.toml//g' | jq -Rnrc '[inputs] | map(select(. != "_base"))')" >> $GITHUB_OUTPUT | |
publish-buildpack: | |
runs-on: ubuntu-latest | |
needs: | |
- enumerate-buildpacks | |
permissions: | |
packages: write | |
contents: read | |
strategy: | |
matrix: | |
buildpack: ${{ fromJSON(needs.enumerate-buildpacks.outputs.buildpacks) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: setup-tools | |
uses: buildpacks/github-actions/[email protected] | |
- id: setup-pack | |
uses: buildpacks/github-actions/[email protected] | |
- name: get local buildpack details | |
id: local-version | |
run: | | |
BUILDPACK_ID="$(cat buildpack.toml | yj -t | jq -r .buildpack.id)" | |
VERSION="$(cat buildpack.toml | yj -t | jq -r .buildpack.version)" | |
PACKAGE="$REPO/$(echo "$BUILDPACK_ID" | sed 's/\//_/g')" | |
echo "buildpack_id=$BUILDPACK_ID" >> "$GITHUB_OUTPUT" | |
echo "version=$VERSION" >> "$GITHUB_OUTPUT" | |
echo "name=$PACKAGE" >> "$GITHUB_OUTPUT" | |
working-directory: ${{ matrix.buildpack }} | |
- name: get published version | |
id: published-version | |
uses: actions/github-script@v7 | |
with: | |
result-encoding: string | |
retries: 3 | |
retry-exempt-status-codes: 400,401 | |
script: | | |
try { | |
return await github.rest.packages | |
.getAllPackageVersionsForPackageOwnedByUser({ | |
package_type: "container", | |
username: "${{ github.repository_owner }}", | |
package_name: "${{ steps.local-version.outputs.name }}".replace(`${process.env.REPO}/`, ""), | |
}) | |
.then(r => r.data[0].metadata.container.tags[0]); | |
} catch (e) { | |
return "0.0.0" | |
} | |
- name: login to ghcr | |
if: steps.local-version.outputs.version > steps.published-version.outputs.result | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin | |
- name: package buildpack | |
id: package | |
if: steps.local-version.outputs.version > steps.published-version.outputs.result | |
run: | | |
#!/usr/bin/env bash | |
set -euo pipefail | |
make build | |
pack buildpack package --publish "${{ steps.local-version.outputs.name }}:${{ steps.local-version.outputs.version }}" | |
DIGEST="$(crane digest ${{ steps.local-version.outputs.name }}:${{ steps.local-version.outputs.version }})" | |
echo "address=${{ steps.local-version.outputs.name }}@${DIGEST}" >> "$GITHUB_OUTPUT" | |
working-directory: ${{ matrix.buildpack }} | |
- id: register | |
if: steps.local-version.outputs.version > steps.published-version.outputs.result | |
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:5.1.0 | |
with: | |
token: ${{ secrets.CNB_PUBLISHER_GHTOKEN }} | |
id: ${{ steps.local-version.outputs.buildpack_id }} | |
version: ${{ steps.local-version.outputs.version }} | |
address: ${{ steps.package.outputs.address }} |