Skip to content

Commit

Permalink
Merge pull request #117 from MattKobayashi/actions
Browse files Browse the repository at this point in the history
Only run test build for relevant container
  • Loading branch information
MattKobayashi authored Feb 12, 2024
2 parents f826f3e + db8ff8f commit 7808123
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ghcr-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
build-actions-runner:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "actions-runner" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'actions-runner' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
build-avahi:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "avahi" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'avahi' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
build-certbot-cloudflare:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "certbot-cloudflare" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'certbot-cloudflare' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
build-fullbogons:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "fullbogons" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'fullbogons' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
build-iperf2:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "iperf2" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'iperf2' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -325,7 +325,7 @@ jobs:
build-iperf3:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "iperf3" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'iperf3' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -386,7 +386,7 @@ jobs:
# build-irrd:

# runs-on: self-hosted
# if: ${{ github.ref_name == "main" || github.ref_name == "irrd" }}
# if: ${{ github.ref_name == 'main' || github.ref_name == 'irrd' }}
# permissions:
# contents: read
# packages: write
Expand Down Expand Up @@ -447,7 +447,7 @@ jobs:
# build-irrexplorer:

# runs-on: self-hosted
# if: ${{ github.ref_name == "main" || github.ref_name == "irrexplorer" }}
# if: ${{ github.ref_name == 'main' || github.ref_name == 'irrexplorer' }}
# permissions:
# contents: read
# packages: write
Expand Down Expand Up @@ -508,7 +508,7 @@ jobs:
build-mdns-reflector:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "mdns-reflector" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'mdns-reflector' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -569,7 +569,7 @@ jobs:
build-rng-tools:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "rng-tools" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'rng-tools' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -630,7 +630,7 @@ jobs:
build-speedtest:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "speedtest" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'speedtest' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -691,7 +691,7 @@ jobs:
build-stun:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "stun" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'stun' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -752,7 +752,7 @@ jobs:
build-telegraf:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "telegraf" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'telegraf' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -813,7 +813,7 @@ jobs:
build-verlihub:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "verlihub" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'verlihub' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -874,7 +874,7 @@ jobs:
build-xteve:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "xteve" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'xteve' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -935,7 +935,7 @@ jobs:
build-yancobat:

runs-on: self-hosted
if: ${{ github.ref_name == "main" || github.ref_name == "yancobat" }}
if: ${{ github.ref_name == 'main' || github.ref_name == 'yancobat' }}
permissions:
contents: read
packages: write
Expand Down

0 comments on commit 7808123

Please sign in to comment.