Skip to content

Add CI release action #1

Add CI release action

Add CI release action #1

Workflow file for this run

name: release

Check failure on line 1 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

(Line: 14, Col: 7): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on:
push:
tags:
- v*
jobs:
release:
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- name: Checkout
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: make build
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: build/trk.tar.gz
draft: true
generateReleaseNotes: true
allowUpdates: true
skipIfReleaseExists: true
updateOnlyUnreleased: true