mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2025-08-18 05:03:27 +02:00
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
f61afa73df
|
|||
e4f614fdbf
|
|||
fb6768a6fc
|
|||
49d3fc6b22
|
|||
7f3399f1d8
|
|||
0eaf0dd3be
|
|||
91e39f4e65
|
25
.github/workflows/create-release.yml
vendored
25
.github/workflows/create-release.yml
vendored
@@ -1,15 +1,26 @@
|
|||||||
name: Release
|
name: Deploy
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
tags:
|
branches:
|
||||||
- v[0-9]+.*
|
- "main"
|
||||||
jobs:
|
jobs:
|
||||||
create-release:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- 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 }}
|
||||||
- uses: taiki-e/create-gh-release-action@v1
|
- uses: taiki-e/create-gh-release-action@v1
|
||||||
with:
|
with:
|
||||||
# (Optional) Path to changelog.
|
# (Optional) Path to changelog.
|
||||||
|
Reference in New Issue
Block a user