27 lines
531 B
YAML
27 lines
531 B
YAML
name: make-a-release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: fedora-cloud-42
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
container:
|
|
image: git.phyllo.me/devops/fedora-runner-image:latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: https://git.phyllo.me/devops/checkout@v5
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: https://git.phyllo.me/devops/action-gh-release@v2
|
|
with:
|
|
files: |-
|
|
release-notes.txt
|
|
api_key: '${{secrets.RELEASE_TOKEN}}' |