-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from buildpacks/jkutner/verify-package
Add verify-package image Signed-off-by: Ben Hale <[email protected]>
- Loading branch information
Showing
7 changed files
with
700 additions
and
1 deletion.
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,73 @@ | ||
name: Create Action verify-buildpackage | ||
"on": | ||
pull_request: | ||
paths: | ||
- verify/** | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- verify/** | ||
release: | ||
types: | ||
- published | ||
jobs: | ||
create-action: | ||
name: Create Action | ||
runs-on: | ||
- ubuntu-latest | ||
steps: | ||
- if: ${{ github.event_name != 'pull_request' || ! github.event.pull_request.head.repo.fork }} | ||
name: Docker login ghcr.io | ||
uses: docker/login-action@v1 | ||
with: | ||
password: ${{ secrets.IMPLEMENTATION_GITHUB_TOKEN }} | ||
registry: ghcr.io | ||
username: ${{ secrets.IMPLEMENTATION_GITHUB_USERNAME }} | ||
- uses: actions/checkout@v2 | ||
- id: version | ||
name: Compute Version | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
if [[ ${GITHUB_REF} =~ refs/tags/v([0-9]+\.[0-9]+\.[0-9]+) ]]; then | ||
VERSION=${BASH_REMATCH[1]} | ||
elif [[ ${GITHUB_REF} =~ refs/heads/(.+) ]]; then | ||
VERSION=${BASH_REMATCH[1]} | ||
else | ||
VERSION=$(git rev-parse --short HEAD) | ||
fi | ||
echo "::set-output name=version::${VERSION}" | ||
echo "Selected ${VERSION} from | ||
* ref: ${GITHUB_REF} | ||
* sha: ${GITHUB_SHA} | ||
" | ||
- name: Create Action | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
echo "::group::Building ${TARGET}:${VERSION}" | ||
docker build \ | ||
--file Dockerfile \ | ||
--build-arg "SOURCE=${SOURCE}" \ | ||
--tag "${TARGET}:${VERSION}" \ | ||
. | ||
echo "::endgroup::" | ||
if [[ "${PUSH}" == "true" ]]; then | ||
echo "::group::Pushing ${TARGET}:${VERSION}" | ||
docker push "${TARGET}:${VERSION}" | ||
echo "::endgroup::" | ||
else | ||
echo "Skipping push" | ||
fi | ||
env: | ||
PUSH: ${{ github.event_name != 'pull_request' }} | ||
SOURCE: verify/cmd | ||
TARGET: ghcr.io/buildpacks/actions/verify-buildpackage | ||
VERSION: ${{ steps.version.outputs.version }} |
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
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
Oops, something went wrong.