mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-08 11:01:47 +01:00
add creator of tags
This commit is contained in:
parent
a71f60784f
commit
91e39f4e65
19
.github/workflows/create-tag.yml
vendored
Normal file
19
.github/workflows/create-tag.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
name: Deploy
|
||||
on:
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v2
|
||||
- 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 }}
|
Loading…
Reference in New Issue
Block a user