mirror of
https://github.com/systemd/systemd.git
synced 2024-12-25 01:34:28 +03:00
9daa5b2a96
Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 1 to 2.
- [Release notes](https://github.com/softprops/action-gh-release/releases)
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md)
- [Commits](de2c0eb89a...9d7c94cfd0
)
---
updated-dependencies:
- dependency-name: softprops/action-gh-release
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
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@9d7c94cfd0a1f3ed45544c887983e9fa900f0564
|
|
with:
|
|
prerelease: ${{ contains(github.ref_name, '-rc') }}
|
|
draft: ${{ github.repository == 'systemd/systemd' }}
|