filters: fix the precedence of ';' #100
Workflow file for this run
This file contains 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: Packages (PR / push) | |
on: | |
pull_request: | |
push: | |
jobs: | |
create-source-tarball: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout AxoSyslog source | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Prepare docker image | |
run: ./dbld/rules cache-image-tarball | |
- name: Create source tarball | |
run: ./dbld/rules pkg-tarball | |
- name: Store source tarball as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: source-tarball | |
path: dbld/build/*.tar.gz | |
create-packages: | |
needs: create-source-tarball | |
uses: ./.github/workflows/create-packages.yml | |
with: | |
source-tarball-artifact-name: source-tarball | |
dbld-image-mode: cache | |
distros: '[ | |
"almalinux-8", | |
"debian-bookworm", | |
"debian-testing", | |
"fedora-39", | |
"ubuntu-noble" | |
]' |