Skip to content

ci: release.yml

ci: release.yml #6

Workflow file for this run

name: Publish Release
on:
push:
branches:
- 'master'
tags:
- 'v*'
env:
GH_TOKEN: ${{ github.token }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- permissions: write-all
- uses: actions/checkout@v3
- name: Create a Release
uses: elgohr/Github-Release-Action@v5
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
title: ${{ github.event.workflow_run.head_commit.message }}