mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2025-12-29 03:01:03 +01:00
Compare commits
11 Commits
v0.2.0
...
44e125e00c
| Author | SHA1 | Date | |
|---|---|---|---|
|
44e125e00c
|
|||
|
83699de4ad
|
|||
|
459014b233
|
|||
|
d365a9f8e2
|
|||
|
f61afa73df
|
|||
|
e4f614fdbf
|
|||
|
fb6768a6fc
|
|||
|
49d3fc6b22
|
|||
|
7f3399f1d8
|
|||
|
0eaf0dd3be
|
|||
|
91e39f4e65
|
23
.github/workflows/create-tag.yml
vendored
Normal file
23
.github/workflows/create-tag.yml
vendored
Normal 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: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
|
||||
branch: main
|
||||
- uses: rickstaa/action-create-tag@v1
|
||||
with:
|
||||
tag: ${{ steps.semver.outputs.next }}
|
||||
message: ${{ steps.semver.outputs.next }}
|
||||
github_token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
|
||||
Reference in New Issue
Block a user