diff --git a/.github/workflows/tagging.yaml b/.github/workflows/tagging.yaml index 3854fc3..ab6363e 100644 --- a/.github/workflows/tagging.yaml +++ b/.github/workflows/tagging.yaml @@ -64,12 +64,15 @@ jobs: const tag = `${moduleName}/${version}`.toLowerCase(); core.info(`The "${tag}" tag will be used for the new version of the module.`); - core.setOutput(tag, 'tag'); - core.setOutput(moduleName, 'moduleName'); - core.setOutput(version, 'version'); + core.setOutput('module-directory', moduleDirectory); + core.setOutput('module-name', moduleName); + core.setOutput('module-type', moduleType); + core.setOutput('tag', tag); + core.setOutput('version', version); } catch (err) { core.setFailed(`Action failed with error ${err}`); } + - name: Create release id: create-release uses: actions/github-script@v7 @@ -77,8 +80,8 @@ jobs: with: script: | github.rest.repos.createRelease({ - body: 'Created by #${{ github.event.number }}', - name: '${{ steps.parse-version-file.outputs.moduleName }} ${{ steps.parse-version-file.outputs.version }}', + body: 'Version ${{ steps.parse-version-file.outputs.version }} of ${{ steps.parse-version-file.outputs.module-type }} module ${{ steps.parse-version-file.outputs.module-name }}. Created by #${{ github.event.number }}', + name: '${{ steps.parse-version-file.outputs.module-name }} ${{ steps.parse-version-file.outputs.version }}', owner: context.repo.owner, repo: context.repo.repo, tag_name: '${{ steps.parse-version-file.outputs.tag }}', diff --git a/resources/module-c/VERSION b/resources/module-c/VERSION index 373f8c6..72f9fa8 100644 --- a/resources/module-c/VERSION +++ b/resources/module-c/VERSION @@ -1 +1 @@ -0.2.3 \ No newline at end of file +0.2.4 \ No newline at end of file diff --git a/services/module-1/VERSION b/services/module-1/VERSION index e6d5cb8..1464c52 100644 --- a/services/module-1/VERSION +++ b/services/module-1/VERSION @@ -1 +1 @@ -1.0.2 \ No newline at end of file +1.0.5 \ No newline at end of file