xmr-btc-swap/.github/workflows/preview-release.yml
dependabot[bot] 758d0f286e
Bump actions/checkout from 2 to 2.3.4
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 2.3.4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v2.3.4)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-12 06:07:41 +00:00

40 lines
1.0 KiB
YAML

name: "Create 'preview' release"
on:
push:
branches:
- master
jobs:
create_release:
name: Create preview release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- name: Delete 'preview' release
uses: larryjoelane/delete-release-action@v1.0.24
with:
release-name: preview
token: ${{ secrets.BOTTY_GITHUB_TOKEN }}
- name: Give GitHub some time to process the deletion, otherwise our release shows up as draft. Sigh.
run: sleep 10
- name: Extract changelog section for release
id: changelog
uses: coditory/changelog-parser@v1
with:
version: unreleased
- name: Create 'preview' release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }}
with:
tag_name: preview
release_name: preview
draft: false
prerelease: true
body: ${{ steps.changelog.outputs.description }}