Skip to content

fix: Fixed release-plz CI with installing libudev-dev and libsystemd-… #3

fix: Fixed release-plz CI with installing libudev-dev and libsystemd-…

fix: Fixed release-plz CI with installing libudev-dev and libsystemd-… #3

Workflow file for this run

name: Release-plz
permissions:
pull-requests: write
contents: write
on:
push:
branches:
- main
jobs:
release-plz:
name: Release-plz
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.RELEASE_PLZ_GITHUB_TOKEN }}
- name: apt-get update
run: sudo apt-get update
- name: Install libudev
run: sudo apt-get -y install libudev-dev libsystemd-dev
- name: Run release-plz
uses: MarcoIeni/release-plz-action@v0.5
env:
# https://marcoieni.github.io/release-plz/github-action.html#triggering-further-workflow-runs
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}