File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 77 required : true
88 type : string
99 require-build :
10- default : true
10+ default : " true"
1111 type : string
1212 release-directory :
1313 default : ' ./'
@@ -32,17 +32,17 @@ jobs:
3232
3333 # Get the version from the branch name
3434 - id : get_version
35- uses : ./get-version
35+ uses : ./.github/actions/ get-version
3636
3737 # Get the prerelease flag from the branch name
3838 - id : get_prerelease
39- uses : ./get-prerelease
39+ uses : ./.github/actions/ get-prerelease
4040 with :
4141 version : ${{ steps.get_version.outputs.version }}
4242
4343 # Get the release notes
4444 - id : get_release_notes
45- uses : ./get-release-notes
45+ uses : ./.github/actions/ get-release-notes
4646 with :
4747 token : ${{ secrets.github-token }}
4848 version : ${{ steps.get_version.outputs.version }}
5151
5252 # Check if the tag already exists
5353 - id : tag_exists
54- uses : ./tag-exists
54+ uses : ./.github/actions/ tag-exists
5555 with :
5656 tag : ${{ steps.get_version.outputs.version }}
5757 token : ${{ secrets.github-token }}
6161 run : exit 1
6262
6363 # Publish the release to our package manager
64- - uses : ./npm-publish
64+ - uses : ./.github/actions/ npm-publish
6565 with :
6666 node-version : ${{ inputs.node-version }}
6767 require-build : ${{ inputs.require-build }}
7070 release-directory : ${{ inputs.release-directory }}
7171
7272 # Create a release for the tag
73- - uses : ./release-create
73+ - uses : ./.github/actions/ release-create
7474 with :
7575 token : ${{ secrets.github-token }}
7676 name : ${{ steps.get_version.outputs.version }}
You can’t perform that action at this time.
0 commit comments