Add optional whitelist/blacklist for talkgroups on RDIO upload plugin… #1591
Workflow file for this run
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: buildx | |
| on: | |
| pull_request: | |
| branches: master | |
| push: | |
| branches: | |
| - master | |
| - rc/** | |
| tags: | |
| - v* | |
| release: | |
| jobs: | |
| buildx: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| - | |
| name: Prepare | |
| id: prepare | |
| run: | | |
| DOCKER_IMAGE='robotastic/trunk-recorder' | |
| DOCKER_PLATFORMS=linux/amd64,linux/arm64,linux/arm/v7 | |
| VERSION=edge | |
| if [[ $GITHUB_REF == refs/tags/* ]]; then | |
| VERSION=${GITHUB_REF#refs/tags/v} | |
| fi | |
| echo GITHUB_REF_NAME=${GITHUB_REF_NAME} | |
| echo GITHUB_REF_NAME_SLUG=${GITHUB_REF_NAME_SLUG} | |
| if [[ $GITHUB_REF_NAME == rc/* ]]; then | |
| VERSION=RC${GITHUB_REF_NAME#rc/v} | |
| fi | |
| if [ "${{ github.event_name }}" = "schedule" ]; then | |
| VERSION=nightly | |
| fi | |
| TAGS="--tag ${DOCKER_IMAGE}:${VERSION}" | |
| if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then | |
| TAGS="$TAGS --tag ${DOCKER_IMAGE}:latest" | |
| fi | |
| if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then | |
| TAGS="$TAGS --tag ${DOCKER_IMAGE}:latest" | |
| fi | |
| echo docker_image::${DOCKER_IMAGE} | |
| echo version::${VERSION} | |
| echo ::set-output name=docker_image::${DOCKER_IMAGE} | |
| echo ::set-output name=version::${VERSION} | |
| echo ::set-output name=buildx_args::--platform ${DOCKER_PLATFORMS} \ | |
| --build-arg VERSION=${VERSION} \ | |
| --build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \ | |
| --build-arg VCS_REF=${GITHUB_SHA::8} \ | |
| ${TAGS} --file ./Dockerfile . | |
| # https://github.com/docker/setup-qemu-action | |
| - | |
| name: Set up QEMU | |
| uses: docker/setup-qemu-action@v1 | |
| # https://github.com/docker/setup-buildx-action | |
| - | |
| name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v1 | |
| - | |
| name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| id: cache | |
| with: | |
| path: /tmp/.buildx-cache | |
| key: ${{ runner.os }}-buildx-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx- | |
| - | |
| name: Docker Buildx (build) | |
| run: | | |
| docker buildx build \ | |
| --cache-from "type=local,src=/tmp/.buildx-cache" \ | |
| --cache-to "type=local,dest=/tmp/.buildx-cache" \ | |
| --output "type=image,push=false" ${{ steps.prepare.outputs.buildx_args }} | |
| - | |
| name: Docker Hub Login | |
| if: success() && github.event_name != 'pull_request' | |
| env: | |
| DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
| DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
| run: | | |
| echo "${DOCKER_PASSWORD}" | docker login --username "${DOCKER_USERNAME}" --password-stdin | |
| - | |
| name: Docker Buildx (push) | |
| if: success() && github.event_name != 'pull_request' | |
| run: | | |
| docker buildx build \ | |
| --cache-from "type=local,src=/tmp/.buildx-cache" \ | |
| --output "type=image,push=true" ${{ steps.prepare.outputs.buildx_args }} | |
| - | |
| name: Clear | |
| if: always() && github.event_name != 'pull_request' | |
| run: | | |
| rm -f ${HOME}/.docker/config.json |