-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc1f7cc
commit a481781
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Create version | ||
name: Bump version | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -18,8 +18,8 @@ on: | |
description: New build for prerelease | ||
|
||
jobs: | ||
update-version: | ||
name: Update version name | ||
bump-version: | ||
name: Bump version | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
|
@@ -29,13 +29,13 @@ jobs: | |
- name: Checkout branch | ||
uses: actions/checkout@v3 | ||
|
||
- name: Generate tag name | ||
- name: Generate tag | ||
uses: MiguelRipoll23/[email protected] | ||
id: generate-tag-name | ||
with: | ||
channel: ${{ inputs.channel }} | ||
|
||
- name: Update version name | ||
- name: Update version | ||
uses: reedyuk/[email protected] | ||
with: | ||
version: ${{ steps.generate-tag-name.outputs.tag-name }} | ||
|
@@ -46,6 +46,6 @@ jobs: | |
branch: version/${{ steps.generate-tag-name.outputs.tag-name }} | ||
commit-message: ${{ steps.generate-tag-name.outputs.tag-name }} | ||
title: Bump version to ${{ steps.generate-tag-name.outputs.tag-name }} | ||
body: Automated pull request triggered by a new version update. | ||
body: Automated pull request triggered by a new release. | ||
labels: new-release,ignore-for-release | ||
draft: true |