From 67522049de2e94efa5f7943b8b7a6e8bb3d11e0d Mon Sep 17 00:00:00 2001
From: Martin Bruzina
Date: Thu, 13 Mar 2025 23:15:25 +0100
Subject: [PATCH] ci: add semantic release workflow
---
.github/workflows/semantic-release.yaml | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 .github/workflows/semantic-release.yaml
diff --git a/.github/workflows/semantic-release.yaml b/.github/workflows/semantic-release.yaml
new file mode 100644
index 0000000..2e99acc
--- /dev/null
+++ b/.github/workflows/semantic-release.yaml
@@ -0,0 +1,13 @@
+---
+name: Semantic Release
+
+on:
+ push:
+ branches:
+ - main
+
+jobs:
+ call-reusable-release:
+ uses: xebis/github-actions-and-workflows/.github/workflows/semantic-release.yaml@main
+ secrets:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}