Skip to content

Draft: Test pipeline #1115

Draft: Test pipeline

Draft: Test pipeline #1115

Workflow file for this run

name: Dissect CI
on:
push:
branches:
- main
tags:
- '*'
pull_request:
workflow_dispatch:
jobs:
ci:
uses: fox-it/dissect-workflow-templates/.github/workflows/dissect-ci-template.yml@allow-failure-acquire
with:
deb-packages: 'liblzo2-dev'
secrets: inherit
test:
needs: [ci]

Check failure on line 19 in .github/workflows/dissect-ci.yml

View workflow run for this annotation

GitHub Actions / Dissect CI

Invalid workflow file

The workflow is not valid. .github/workflows/dissect-ci.yml (Line: 19, Col: 5): Required property is missing: runs-on
steps:
- uses: actions/download-artifact@v4
with:
name: packages
path: dist/
publish:
if: ${{ github.ref_name == 'main' || github.ref_type == 'tag' }}
needs: [ci]
runs-on: ubuntu-latest
environment: dissect_publish
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
name: packages
path: dist/
# According to the documentation, it automatically looks inside the `dist/` folder for packages.
- name: Publish package distributions to Pypi
uses: pypa/gh-action-pypi-publish@release/v1
trigger-tests:
needs: [publish]
uses: fox-it/dissect-workflow-templates/.github/workflows/dissect-ci-demand-test-template.yml@main
secrets: inherit