Compare commits

..

5 Commits

Author SHA1 Message Date
fb6768a6fc bump version 2023-02-17 18:59:49 +01:00
49d3fc6b22 with github token 2023-02-17 18:54:36 +01:00
7f3399f1d8 only allow main 2023-02-17 18:51:47 +01:00
0eaf0dd3be fix: test creator of tags 2023-02-17 18:50:39 +01:00
91e39f4e65 add creator of tags 2023-02-17 18:50:18 +01:00

23
.github/workflows/create-tag.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Deploy
on:
workflow_dispatch:
push:
branches:
- "main"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Get Next Version
id: semver
uses: ietf-tools/semver-action@v1
with:
token: ${{ github.token }}
branch: main
- uses: rickstaa/action-create-tag@v1
with:
tag: ${{ steps.semver.outputs.next }}
message: ${{ steps.semver.outputs.next }}
github_token: ${{ github.token }}