mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
c528756fb1
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.1.0 to 3.2.0. - [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/v3.1.0...v3.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
1.0 KiB
YAML
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@v3.2.0
|
|
|
|
- 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 }}
|