2025-02-16 12:20:48 +01:00
|
|
|
---
|
2025-02-16 12:23:16 +01:00
|
|
|
name: release
|
2025-02-16 12:16:19 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
tags:
|
|
|
|
- '**'
|
2025-02-16 12:23:16 +01:00
|
|
|
|
2025-02-16 12:16:19 +01:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
steps:
|
2025-02-16 12:23:16 +01:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: ncipollo/release-action@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|