Build #27
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: Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- disabled | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.yml' | |
- '**/*.yaml' | |
- '.gitignore' | |
- '.dockerignore' | |
- '.github/**' | |
- '.github/workflows/**' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- | |
name: Prepare Docker build | |
id: prepare | |
run: | | |
PLATFORMS="linux/amd64,linux/arm64" | |
VERSION=$(grep --only-matching --perl-regex "(?<=VERSION_ARG\=).*" ./Dockerfile) | |
VERSION=$(echo "${VERSION}" | xargs) | |
TAGS=() | |
TAGS=("${{ secrets.DOCKERHUB_REPO }}:latest") | |
TAGS+=("${{ secrets.DOCKERHUB_REPO }}:${VERSION}") | |
TAGS+=("ghcr.io/${{ github.repository }}:latest") | |
TAGS+=("ghcr.io/${{ github.repository }}:${VERSION}") | |
echo "tags=${TAGS[@]}" >> $GITHUB_OUTPUT | |
echo "version=${VERSION}" >> $GITHUB_OUTPUT | |
echo "docker_platforms=${PLATFORMS}" >> $GITHUB_OUTPUT | |
echo "build_date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT | |
- | |
name: Clone branch | |
run: | | |
git config --global url.https://github.com/.insteadOf git://github.com/ | |
git clone https://github.com/hoytech/strfry.git --single-branch --branch ${{ steps.prepare.outputs.version }} | |
cp Dockerfile strfry/Dockerfile | |
cp .dockerignore strfry/.dockerignore | |
- | |
name: Login into Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Build Docker image | |
run: | | |
TAGS=(${{ steps.prepare.outputs.tags }}) | |
echo "Build date: ${{ steps.prepare.outputs.build_date }}" | |
echo "Docker platform: ${{ steps.prepare.outputs.docker_platforms }}" | |
echo "Tags: ${{ steps.prepare.outputs.tags }}" | |
docker buildx build --platform ${{ steps.prepare.outputs.docker_platforms }} \ | |
--output "type=image,push=true" \ | |
--progress=plain \ | |
--build-arg "BUILD_ARG=${GITHUB_RUN_ID}" \ | |
--build-arg "VERSION_ARG=${{ steps.prepare.outputs.version }}" \ | |
--build-arg "DATE_ARG=${{ steps.prepare.outputs.build_date }}" \ | |
--build-arg "VCS_REF=${GITHUB_SHA::8}" \ | |
$(printf "%s" "${TAGS[@]/#/ --tag }" ) strfry/. | |
- | |
name: Clear Docker credentials | |
run: | | |
rm -f ${HOME}/.docker/config.json | |