Skip to content

Release

Release #13

Workflow file for this run

name: Release
# This ensures that the release is only created after the Docker Build Pipeline
# has successfully completed.
on:
workflow_run:
workflows: ["Build"]
types:
- completed
push:
tags:
- 'v*'
jobs:
create-release:
runs-on: ubuntu-latest
if: github.event.workflow_run.conclusion == 'success'
steps:
- name: Create GitHub Release
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false