Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ name: Docker CI

on:
pull_request:
branches: ['main','release/**']
paths: ['Dockerfile','bin/**','config/**','.github/workflows/ci-docker.yml']
branches: ["main", "release/**"]
paths:
["Dockerfile", "bin/**", "config/**", ".github/workflows/ci-docker.yml"]

env:
REGISTRY: ghcr.io
Expand All @@ -14,7 +15,7 @@ permissions:

jobs:
build-amd64:
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64, ansible]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 https://github.com/actions/checkout/releases/tag/v5.0.0
- name: qemu
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conventional-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:
name: Conventional Commits
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64, ansible]
permissions:
contents: read
steps:
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: publish

on:
push:
branches: ['main']
tags: ['v*.*.*']
branches: ["main"]
tags: ["v*.*.*"]

concurrency: ${{ github.ref }}

Expand All @@ -12,9 +12,8 @@ env:
GHCR_IMAGE_NAME: ghcr.io/blinklabs-io/cardano-node

jobs:

build-amd64:
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64, ansible]
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -148,7 +147,7 @@ jobs:
done

multi-arch-manifest:
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64, ansible]
needs: [build-amd64, build-arm64]
permissions:
contents: read
Expand Down Expand Up @@ -287,12 +286,12 @@ jobs:
short-description: "Cardano Node built from source on Debian"

github-release:
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64, ansible]
permissions:
contents: write
needs: [multi-arch-manifest]
steps:
- run: "echo \"RELEASE_TAG=${GITHUB_REF#refs/tags/}\" >> $GITHUB_ENV"
- run: 'echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV'
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 https://github.com/actions/github-script/releases/tag/v8.0.0
if: startsWith(github.ref, 'refs/tags/')
with:
Expand Down
Loading