Skip to content

Commit

Permalink
fix(ci): fix delivery of libzmq (#1130)
Browse files Browse the repository at this point in the history
* fix(ci): fix delivery of libzmq

* fix(ci): fix delivery of libzmq
  • Loading branch information
kduret authored Feb 9, 2024
1 parent 8f13d07 commit fe085c6
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/zmq-lib.yml → .github/workflows/libzmq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ on:
workflow_dispatch:
pull_request:
paths:
- '.github/workflows/zmq-lib.yml'
- '.github/workflows/libzmq.yml'
push:
branches:
- develop
- dev-[2-9][0-9].[0-9][0-9].x
- master
- "[2-9][0-9].[0-9][0-9].x"
paths:
- '.github/workflows/zmq-lib.yml'
- '.github/workflows/libzmq.yml'

jobs:
get-version:
Expand Down Expand Up @@ -145,6 +145,9 @@ jobs:
name: deliver ${{ matrix.distrib }}

steps:
- name: Checkout sources
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Publish RPM packages
uses: ./.github/actions/delivery
with:
Expand Down Expand Up @@ -175,6 +178,9 @@ jobs:
name: deliver ${{ matrix.distrib }}

steps:
- name: Checkout sources
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Publish DEB packages
uses: ./.github/actions/delivery
with:
Expand All @@ -194,6 +200,9 @@ jobs:
distrib: [el8, el9, bullseye, bookworm, jammy]

steps:
- name: Checkout sources
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Promote ${{ matrix.distrib }} to stable
uses: ./.github/actions/promote-to-stable
with:
Expand Down

0 comments on commit fe085c6

Please sign in to comment.