ci(release): replace butlerlogic/action-autotag with Klemensas/action-autotag
This commit is contained in:
parent
9b5bcc7147
commit
3c7dcfeb5e
1 changed files with 18 additions and 0 deletions
18
.github/workflows/beta-release.yml
vendored
18
.github/workflows/beta-release.yml
vendored
|
@ -132,6 +132,24 @@ jobs:
|
||||||
name: cli
|
name: cli
|
||||||
path: packages/cli/dist
|
path: packages/cli/dist
|
||||||
|
|
||||||
|
create-tag:
|
||||||
|
needs: [build-images, build-cli]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
tagname: ${{ steps.create_tag.outputs.tagname }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Create Tag
|
||||||
|
id: create_tag
|
||||||
|
uses: Klemensas/action-autotag@stable
|
||||||
|
with:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
tag_prefix: 'v'
|
||||||
|
tag_suffix: '-beta.${{ github.event.inputs.tag }}'
|
||||||
|
|
||||||
publish-release:
|
publish-release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [create-tag, build-images, build-cli, build-worker]
|
needs: [create-tag, build-images, build-cli, build-worker]
|
||||||
|
|
Loading…
Reference in a new issue