bump: version 1.0.0 → 1.1.0 (#6) #6
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
name: Release New Version | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
# Builds a new release for the module by bumping the version number and | |
# generating a changelog entry. Commit the changes and open a pull request. | |
build-release: | |
name: Build new release | |
runs-on: ubuntu-latest | |
if: ${{ !startsWith(github.event.head_commit.message, 'bump:') }} | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
with: | |
fetch-tags: true | |
- name: Bump version and create changelog | |
id: bump | |
uses: commitizen-tools/commitizen-action@master | |
with: | |
push: false | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
git_redirect_stderr: true | |
- name: Get the commit message | |
id: message | |
run: | | |
MESSAGE=$(git log --format=%B -n 1) | |
echo "message=${MESSAGE}" >> $GITHUB_OUTPUT | |
- name: Open a pull request for the release | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
branch: release-${{ steps.bump.outputs.version }} | |
title: ${{ steps.message.outputs.message }} | |
# Creates a new tag and GitHub release for the module. | |
release: | |
name: Release module | |
runs-on: ubuntu-latest | |
if: startsWith(github.event.head_commit.message, 'bump:') | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Get the module name | |
id: module_name | |
run: | | |
REPO_NAME="${{ github.event.repository.name }}" | |
REPO_NAME="${REPO_NAME/tofu-modules-/}" | |
MODULE_NAME="${REPO_NAME//-/_}" | |
echo "name=${MODULE_NAME}" >> $GITHUB_OUTPUT | |
- name: Get the version from the commit message | |
id: version | |
uses: actions/github-script@v7 | |
env: | |
COMMIT_MESSAGE: ${{ github.event.head_commit.message }} | |
with: | |
result-encoding: string | |
# Look for the last version number, expecting it to be in the format: | |
# `#.#.#-<suffix>.#` where the suffix is optional. | |
script: | | |
const message = process.env.COMMIT_MESSAGE; | |
const regex = /^bump:.+(?<version>\d+\.\d+\.\d+[\da-z.-]*) \(#\d+\)$/m; | |
const version = message.match(regex).groups.version; | |
console.log(version); | |
return version; | |
- name: Bundle the module | |
# We create an empty file first, so that tar doesn't complain about the | |
# contents changing while it's running. | |
run: | | |
touch '${{ steps.module_name.outputs.name }}-${{ steps.version.outputs.result }}.tar.gz' | |
tar \ | |
--exclude='.git' \ | |
--exclude='.gitignore' \ | |
--exclude='.github' \ | |
--exclude='.cz.yaml' \ | |
--exclude='*.tar.gz' \ | |
--exclude='*.tfvars' \ | |
--exclude='release.md' \ | |
--exclude='CODEOWNERS' \ | |
--exclude='trivy.yaml' \ | |
--exclude='*.env' \ | |
-czf '${{ steps.module_name.outputs.name }}-${{ steps.version.outputs.result }}.tar.gz' \ | |
. | |
- name: Get changelog entry | |
id: changelog | |
uses: artlaman/[email protected] | |
with: | |
version: ${{ steps.version.outputs.result }} | |
- name: Create release | |
uses: softprops/action-gh-release@v2 | |
with: | |
body: | | |
## ${{ steps.changelog.outputs.version }} (${{ steps.changelog.outputs.date }}) | |
${{ steps.changelog.outputs.changes }} | |
tag_name: ${{ steps.version.outputs.result }} | |
files: | | |
${{ steps.module_name.outputs.name }}-${{ steps.version.outputs.result }}.tar.gz |