Add missing close quote in action #4
Workflow file for this run
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: Package and Publish | |
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
jobs: | |
publish: | |
name: Package and Publish | |
runs-on: | |
- ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- id: checkout | |
uses: actions/checkout@v4 | |
- id: setup-tools | |
uses: buildpacks/github-actions/[email protected] | |
- id: setup-pack | |
uses: buildpacks/github-actions/[email protected] | |
- id: login-docker | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- id: package-buildpack | |
run: | | |
#!/usr/bin/env bash | |
set -euo pipefail | |
cd buildpacks | |
ORG="ghcr.io/${GITHUB_REPOSITORY_OWNER}" | |
BP_ID="$(cat test-info/buildpack.toml | yj -t | jq -r .buildpack.id)" | |
REPO="$(echo "$BP_ID" | sed 's/.*\///')" | |
VERSION="$(cat test-info/buildpack.toml | yj -t | jq -r .buildpack.version)" | |
PACKAGE="${ORG}/${REPO}" | |
pack buildpack package ${PACKAGE}:${VERSION} --config package.toml --target "linux/amd64" --target "linux/arm64" --publish | |
cd .. | |
shell: bash | |
- id: package-builder | |
run: | | |
#!/usr/bin/env bash | |
set -euo pipefail | |
cd builder | |
ORG="ghcr.io/${GITHUB_REPOSITORY_OWNER}" | |
REPO=$(echo "${{ github.repository }}" | sed 's/^.*\///') | |
TAG="${{ github.ref_name }}" | |
VERSION="${TAG#v}" | |
PACKAGE="${ORG}/${REPO}" | |
pack builder create "${PACKAGE}:${VERSION}" --config builder.toml --target "linux/amd64" --target "linux/arm64" --publish | |
cd .. | |
shell: bash |