Formally remove children when the parent device is removed #38
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: tag | |
on: | |
push: | |
tags: | |
# this is a glob, not a regexp | |
- '[0-9]*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
# need this to also fetch tags | |
fetch-depth: 0 | |
- name: Workaround for https://github.com/actions/checkout/pull/697 | |
run: git fetch --force origin $(git describe --tags):refs/tags/$(git describe --tags) | |
- name: Build release tarball | |
# run as root; current Ubuntu podman breaks user networking ("could not find slirp4netns") | |
run: sudo PUBLISH_TAR=1 tests/run-apt | |
- name: Create GitHub release | |
uses: cockpit-project/action-release@7d2e2657382e8d34f88a24b5987f2b81ea165785 | |
with: | |
filename: "umockdev-${{ github.ref_name }}.tar.xz" |