Skip to content

Commit

Permalink
build: Add automated release actions
Browse files Browse the repository at this point in the history
  • Loading branch information
coolapso authored and orazioedoardo committed Apr 13, 2024
1 parent 68520aa commit ececd4e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yaml
@@ -0,0 +1,20 @@
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 }}

0 comments on commit ececd4e

Please sign in to comment.