mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 09:27:24 +00:00
20 lines
333 B
YAML
20 lines
333 B
YAML
|
---
|
||
|
name: "tagged-release"
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- "v*"
|
||
|
|
||
|
jobs:
|
||
|
tagged-release:
|
||
|
name: "Tagged Release"
|
||
|
runs-on: "ubuntu-latest"
|
||
|
|
||
|
steps:
|
||
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
||
|
with:
|
||
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||
|
prerelease: false
|
||
|
draft: true
|