mirror of
https://github.com/pivpn/pivpn.git
synced 2025-01-12 23:14:43 +00:00
20 lines
382 B
YAML
20 lines
382 B
YAML
name: Release
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
version: ${{ steps.semrel.outputs.version }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: go-semantic-release/action@v1
|
|
id: semrel
|
|
name: Release
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|