Skip to content

Commit

Permalink
add workflow for rebuilding wreadsb
Browse files Browse the repository at this point in the history
don't trigger complete tree on wreadsb update
  • Loading branch information
wiedehopf committed Jun 11, 2024
1 parent f73fa96 commit c2c2ca9
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/deploy_ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ on:
paths:
- "Dockerfile**"

repository_dispatch:
types: build_on_wreadsb_update

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
Expand Down
90 changes: 90 additions & 0 deletions .github/workflows/deploy_wreadsb.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
---
name: Deploy

on:
# Enable manual running of action if necessary
workflow_dispatch:
inputs:
reason:
required: true
description: "Reason for running this workflow"
disable_upstream_triggers:
required: false
type: boolean
description: "Rebuild the base images but don't trigger downstream builds"
default: false

repository_dispatch:
types: build_on_wreadsb_update

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:

deploy_wreadsb:
name: Deploy wreadsb to ghcr.io
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
# Check out our code
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 2

# Log into ghcr (so we can push images)
- name: Login to ghcr.io
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

# Get metadata from repo
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/[email protected]
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

# Set up QEMU for multi-arch builds
- name: Set up QEMU
uses: docker/[email protected]

# Set up buildx for multi platform builds
- name: Set up Docker Buildx
id: buildx
uses: docker/[email protected]

# Build & Push Dockerfile (only push if this action was NOT triggered by a PR)
- name: Build & Push ghcr.io/sdr-enthusiasts/docker-baseimage:wreadsb
uses: docker/[email protected]
with:
context: .
file: ./Dockerfile.wreadsb
no-cache: true
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/sdr-enthusiasts/docker-baseimage:wreadsb
labels: ${{ steps.meta.outputs.labels }}

trigger_build_sdr-enthusiasts_docker-tar1090:
name: Trigger deploy of sdr-enthusiasts/docker-tar1090
needs: [deploy_wreadsb]
runs-on: ubuntu-latest
if: ${{ github.event.inputs.disable_upstream_triggers != 'true' }}
env:
WORKFLOW_AUTH_TOKEN: ${{ secrets.GH_PAT_MIKENYE }}
WORKFLOW_REPO: sdr-enthusiasts/docker-tar1090
WORKFLOW_FILE: deploy.yml
WORKFLOW_REASON: "triggered via deploy_ghcr.yml in sdr-enthusiasts/docker-baseimage"
steps:
- name: Trigger ${{ env.WORKFLOW_FILE }} in ${{ env.WORKFLOW_REPO }}
run: |
echo "$WORKFLOW_AUTH_TOKEN" | gh auth login --with-token
gh workflow run --ref main --repo "$WORKFLOW_REPO" "$WORKFLOW_FILE" -f reason="$WORKFLOW_REASON"

0 comments on commit c2c2ca9

Please sign in to comment.