Skip to content

create-release

create-release #6

Workflow file for this run

name: "create-release"
on:
push:
tags:
- "*"
jobs:
create-release:
name: "Create release for pushed tag"
runs-on: "ubuntu-latest"
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: "ncipollo/release-action@v1.12.0"
with:
allowUpdates: true
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
bodyFile: .github/workflows/resources/releaseBody.md
token: "${{ secrets.GITHUB_TOKEN }}"