2020-06-09 20:42:24 +03:00
|
|
|
# Create a github release, when a "[0-9]*" tag is pushed (anywhere ?)
|
|
|
|
#
|
|
|
|
# https://github.com/actions/create-release - still pretty rough, 20200609
|
2020-06-09 19:49:50 +03:00
|
|
|
|
2020-06-10 01:28:29 +03:00
|
|
|
name: release
|
2020-06-09 19:49:50 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-06-21 07:26:08 +03:00
|
|
|
tags: [ '[0-9]*', 'r[0-9]*' ]
|
2020-06-21 19:07:50 +03:00
|
|
|
branches: [ 'master', '[0-9]*-branch' ]
|
2020-06-09 19:49:50 +03:00
|
|
|
|
|
|
|
jobs:
|
2020-06-10 01:28:29 +03:00
|
|
|
release:
|
2020-06-09 19:49:50 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-06-10 01:28:29 +03:00
|
|
|
|
2020-06-09 19:49:50 +03:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
2020-06-10 01:28:29 +03:00
|
|
|
|
2020-06-09 19:49:50 +03:00
|
|
|
- name: Create Release
|
|
|
|
id: create_release
|
|
|
|
uses: actions/create-release@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
|
|
|
|
with:
|
2020-06-22 03:50:32 +03:00
|
|
|
tag_name: X.Y
|
|
|
|
release_name: X.Y
|
2020-06-09 19:49:50 +03:00
|
|
|
body: |
|
2020-06-22 03:50:32 +03:00
|
|
|
CHANGE 1; CHANGE 2.
|
|
|
|
https://hledger.org/release-notes.html#hledger-X-Y
|
2020-06-09 19:49:50 +03:00
|
|
|
draft: true
|
2020-06-22 03:50:32 +03:00
|
|
|
prerelease: true
|