24 lines
531 B
YAML
24 lines
531 B
YAML
name: Make a Github release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
release:
|
|
if: github.repository == 'systemd/systemd' || github.repository == 'systemd/systemd-stable'
|
|
runs-on: ubuntu-24.04
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- name: Release
|
|
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda
|
|
with:
|
|
prerelease: ${{ contains(github.ref_name, '-rc') }}
|
|
draft: ${{ github.repository == 'systemd/systemd' }}
|