-
Notifications
You must be signed in to change notification settings - Fork 834
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor build workflow and add check for update
- Loading branch information
Showing
2 changed files
with
120 additions
and
61 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,94 @@ | ||
name: Push image | ||
on: | ||
workflow_call: | ||
inputs: | ||
containerfile: | ||
description: Which containerfile/dockerfile to build | ||
required: true | ||
type: string | ||
image: | ||
description: image name | ||
required: true | ||
type: string | ||
tag: | ||
description: image tag | ||
required: true | ||
type: string | ||
update-check: | ||
description: command to run on old image and check for updates | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
check-for-changes: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
detected: ${{ steps.changes.outputs.detected }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Check for changes or updates | ||
id: changes | ||
run: | | ||
latest_tag="docker.pkg.github.com/${{ inputs.image }}/${{ inputs.tag }}" | ||
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com \ | ||
-u ${{ github.actor }} --password-stdin | ||
docker pull "$latest_tag" | ||
docker logout docker.pkg.github.com | ||
packages="$(docker run --rm "$latest_tag" --entrypoint=/bin/sh -c "${{ inputs.update-check }}")" | ||
echo "$packages" | ||
revision="$(docker image inspect --format \ | ||
'{{index .Config.Labels "org.opencontainers.image.revision"}}' \ | ||
"$latest_tag")" | ||
echo "$revision" | ||
if [ "$revision" != "$GITHUB_SHA" ] || [ "${#packages}" -gt 0 ]; then | ||
echo "Changes detected" | ||
echo "detected=true" >> "$GITHUB_OUTPUT" | ||
else | ||
echo "No change detected" | ||
echo "detected=false" >> "$GITHUB_OUTPUT" | ||
fi | ||
build-and-push: | ||
runs-on: ubuntu-latest | ||
needs: check-for-changes | ||
if: needs.check-for-changes.outputs.detected == 'true' | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true # for shunit2 | ||
|
||
- name: Build image | ||
run: | | ||
docker build . \ | ||
--pull=true \ | ||
--file="${{ inputs.containerfile }}" \ | ||
--tag="${{ inputs.image }}:${{ inputs.tag }}" \ | ||
--label="org.opencontainers.image.source=$GITHUB_SERVER_URL/$GITHUB_REPOSITORY" \ | ||
--label="org.opencontainers.image.revision=$GITHUB_SHA" \ | ||
--label="org.opencontainers.image.created=$(date --rfc-3339=seconds)" | ||
- name: Test image | ||
run: tests/run "${{ inputs.image }}:${{ inputs.tag }}" | ||
|
||
- name: Push image to GitHub registry | ||
if: github.ref == 'refs/heads/master' | ||
run: | | ||
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com \ | ||
-u ${{ github.actor }} --password-stdin | ||
github_tag=docker.pkg.github.com/${{ inputs.image }}/${{ inputs.tag }} | ||
docker tag "${{ inputs.image }}:${{ inputs.tag }}" $github_tag | ||
echo docker push "$github_tag" | ||
docker logout docker.pkg.github.com | ||
- name: Push images to Docker Hub registry | ||
if: github.ref == 'refs/heads/master' | ||
run: | | ||
echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login \ | ||
-u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin | ||
echo docker push "${{ inputs.image }}:${{ inputs.tag }}" | ||
docker logout |
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