mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
25 lines
531 B
YAML
25 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@69320dbe05506a9a39fc8ae11030b214ec2d1f87
|
|
with:
|
|
prerelease: ${{ contains(github.ref_name, '-rc') }}
|
|
draft: ${{ github.repository == 'systemd/systemd' }}
|