Skip to content

Commit

Permalink
rename to prepare-release
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbonnin committed Jun 19, 2024
1 parent e401e84 commit 2f942ff
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tag-version/action.yml → prepare-release/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Tag version'
name: 'Prepare release'
description: 'Sets the version to "versionToRelease", creates a tag and bump to the next patch SNAPSHOT'
inputs:
versionToRelease:
Expand Down
2 changes: 1 addition & 1 deletion tag-version/index.js → prepare-release/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const exec = (cmd, args=[]) => new Promise((resolve, reject) => {
});

const main = async () => {
await exec('kotlin', [path.join(__dirname, './tag-version.main.kts')]);
await exec('kotlin', [path.join(__dirname, './prepare-release.main.kts')]);
};

main().catch(err => {
Expand Down
File renamed without changes.

0 comments on commit 2f942ff

Please sign in to comment.