mirror of
https://github.com/systemd/systemd.git
synced 2025-01-11 09:18:07 +03:00
19cdda7c3a
It's not required as per comment - https://github.com/systemd/systemd/pull/27110#issuecomment-1499653913
25 lines
532 B
YAML
25 lines
532 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-latest
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- name: Release
|
|
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
|
|
with:
|
|
prerelease: ${{ contains(github.ref_name, '-rc') }}
|
|
draft: ${{ github.repository == 'systemd/systemd' }}
|