Add ont-straglr image #13
This file contains hidden or 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 & Publish Docker Images | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| packages: write | |
| jobs: | |
| detect-changes: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| tools: ${{ steps.matrix.outputs.tools }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| fetch-depth: 0 | |
| - name: Detect changed tool directories | |
| id: matrix | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| # Get changed files compared to main | |
| CHANGED_FILES=$(git diff --name-only origin/main...HEAD) | |
| # Extract top-level dirs | |
| CANDIDATES=$(echo "$CHANGED_FILES" \ | |
| | awk -F/ 'NF > 1 { print $1 }' \ | |
| | sort -u) | |
| TOOLS=() | |
| for dir in $CANDIDATES; do | |
| # Trim leading/trailing whitespace | |
| dir_clean=$(echo "$dir" | xargs) | |
| if [[ -d "$dir_clean" ]] && \ | |
| [[ -f "$dir_clean/Dockerfile" ]] && \ | |
| [[ -f "$dir_clean/image.env" ]]; then | |
| TOOLS+=("$dir_clean") | |
| fi | |
| done | |
| if [ "${#TOOLS[@]}" -eq 0 ]; then | |
| echo "tools=[]" >> "$GITHUB_OUTPUT" | |
| else | |
| # Make JSON safely | |
| TOOLS_JSON=$(printf '%s\n' "${TOOLS[@]}" | jq -R . | jq -s . | tr -d '\n') | |
| # No leading/trailing spaces | |
| echo "tools=$TOOLS_JSON" >> "$GITHUB_OUTPUT" | |
| fi | |
| build: | |
| needs: detect-changes | |
| if: needs.detect-changes.outputs.tools != '[]' | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| tool: ${{ fromJson(needs.detect-changes.outputs.tools) }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Load image configuration | |
| run: | | |
| set -a | |
| source ${{ matrix.tool }}/image.env | |
| set +a | |
| echo "IMAGE_NAME=${IMAGE_NAME}" >> $GITHUB_ENV | |
| echo "REGISTRY=${REGISTRY:-ghcr.io}" >> $GITHUB_ENV | |
| echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_ENV | |
| - name: Docker metadata | |
| id: meta | |
| uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0 | |
| with: | |
| images: | | |
| ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }} | |
| tags: | | |
| type=sha | |
| type=raw,value=latest,enable={{is_default_branch}} | |
| type=raw,value=${{ env.IMAGE_TAG }} | |
| - name: Login to GitHub container registry | |
| if: github.ref == 'refs/heads/main' | |
| uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build (and optionally push) | |
| uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 | |
| with: | |
| context: ${{ matrix.tool }} | |
| file: ${{ matrix.tool }}/Dockerfile | |
| push: ${{ github.ref == 'refs/heads/main' }} | |
| tags: ${{ steps.meta.outputs.tags }} |