respect-validation/.github/workflows/release.yml
Henrique Moody 7796174e73
Automate GitHub releases
This commit adds   "softprops/action-gh-release" to GitHub workflows.

That will allow us to automate the process of creating releases from
tags.
2026-01-04 22:26:21 +01:00

13 lines
No EOL
238 B
YAML

name: Release
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Release
uses: softprops/action-gh-release@v2
if: github.ref_type == 'tag'