yage
768bd1444e
===================================================================== --- Bug Fixes ---------------------------- - added one more protection against sneaky BSD utils (fixes #1) --- Changes ------------------------------ - added a GH action to automatically create release binaries - added SCWRYPTS_ROOT when installed from aur package build
20 lines
400 B
YAML
20 lines
400 B
YAML
---
|
|
name: Automatic Tag-release
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
push:
|
|
branches-ignore:
|
|
- '**'
|
|
tags:
|
|
- 'v*.*.*'
|
|
|
|
jobs:
|
|
automatic-tag-release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: marvinpinto/action-automatic-releases@latest
|
|
with:
|
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
prerelease: false
|