mirror of
https://github.com/Respect/Validation.git
synced 2026-03-22 17:54:41 +01:00
This commit adds "softprops/action-gh-release" to GitHub workflows. That will allow us to automate the process of creating releases from tags.
13 lines
No EOL
238 B
YAML
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' |