|
| 1 | +name: Release New Version |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + branches: |
| 6 | + - main |
| 7 | + |
| 8 | +jobs: |
| 9 | + # Builds a new release for the module by bumping the version number and |
| 10 | + # generating a changelog entry. Commit the changes and open a pull request. |
| 11 | + build-release: |
| 12 | + name: Build new release |
| 13 | + runs-on: ubuntu-latest |
| 14 | + if: ${{ !startsWith(github.event.head_commit.message, 'bump:') }} |
| 15 | + steps: |
| 16 | + - name: Checkout source code |
| 17 | + uses: actions/checkout@v4 |
| 18 | + - name: Bump version and create changelog |
| 19 | + id: bump |
| 20 | + uses: commitizen-tools/commitizen-action@master |
| 21 | + with: |
| 22 | + push: false |
| 23 | + github_token: ${{ secrets.GITHUB_TOKEN }} |
| 24 | + git_redirect_stderr: true |
| 25 | + - name: Get the commit message |
| 26 | + id: message |
| 27 | + run: | |
| 28 | + MESSAGE=$(git log --format=%B -n 1) |
| 29 | + echo "message=${MESSAGE}" >> $GITHUB_OUTPUT |
| 30 | + - name: Open a pull request for the release |
| 31 | + uses: peter-evans/create-pull-request@v7 |
| 32 | + with: |
| 33 | + branch: release-${{ steps.bump.outputs.version }} |
| 34 | + title: ${{ steps.message.outputs.message }} |
| 35 | + |
| 36 | + # Creates a new tag and GitHub release for the module. |
| 37 | + release: |
| 38 | + name: Release module |
| 39 | + runs-on: ubuntu-latest |
| 40 | + if: startsWith(github.event.head_commit.message, 'bump:') |
| 41 | + steps: |
| 42 | + - name: Checkout source code |
| 43 | + uses: actions/checkout@v4 |
| 44 | + - name: Get the module name |
| 45 | + id: module_name |
| 46 | + run: | |
| 47 | + REPO_NAME="${{ github.event.repository.name }}" |
| 48 | + REPO_NAME="${REPO_NAME/tofu-modules-/}" |
| 49 | + MODULE_NAME="${REPO_NAME//-/_}" |
| 50 | + echo "name=${MODULE_NAME}" >> $GITHUB_OUTPUT |
| 51 | + - name: Get the version from the commit message |
| 52 | + id: version |
| 53 | + uses: actions/github-script@v7 |
| 54 | + env: |
| 55 | + COMMIT_MESSAGE: ${{ github.event.head_commit.message }} |
| 56 | + with: |
| 57 | + result-encoding: string |
| 58 | + # Look for the last version number, expecting it to be in the format: |
| 59 | + # `#.#.#-<suffix>.#` where the suffix is optional. |
| 60 | + script: | |
| 61 | + const message = process.env.COMMIT_MESSAGE; |
| 62 | + const regex = /^bump:.+(?<version>\d+\.\d+\.\d+[\da-z.-]*) \(#\d+\)$/m; |
| 63 | + const version = message.match(regex).groups.version; |
| 64 | + console.log(version); |
| 65 | + return version; |
| 66 | + - name: Bundle the module |
| 67 | + # We create an empty file first, so that tar doesn't complain about the |
| 68 | + # contents changing while it's running. |
| 69 | + run: | |
| 70 | + touch '${{ steps.module_name.outputs.name }}-${{ steps.version.outputs.result }}.tar.gz' |
| 71 | + tar \ |
| 72 | + --exclude='.git' \ |
| 73 | + --exclude='.gitignore' \ |
| 74 | + --exclude='.github' \ |
| 75 | + --exclude='.cz.yaml' \ |
| 76 | + --exclude='*.tar.gz' \ |
| 77 | + --exclude='*.tfvars' \ |
| 78 | + --exclude='release.md' \ |
| 79 | + --exclude='CODEOWNERS' \ |
| 80 | + --exclude='trivy.yaml' \ |
| 81 | + --exclude='*.env' \ |
| 82 | + -czf '${{ steps.module_name.outputs.name }}-${{ steps.version.outputs.result }}.tar.gz' \ |
| 83 | + . |
| 84 | + - name: Get changelog entry |
| 85 | + id: changelog |
| 86 | + |
| 87 | + with: |
| 88 | + version: ${{ steps.version.outputs.result }} |
| 89 | + - name: Create release |
| 90 | + uses: softprops/action-gh-release@v2 |
| 91 | + with: |
| 92 | + body: | |
| 93 | + ## ${{ steps.changelog.outputs.version }} (${{ steps.changelog.outputs.date }}) |
| 94 | +
|
| 95 | + ${{ steps.changelog.outputs.changes }} |
| 96 | + tag_name: ${{ steps.version.outputs.result }} |
| 97 | + files: | |
| 98 | + ${{ steps.module_name.outputs.name }}-${{ steps.version.outputs.result }}.tar.gz |
0 commit comments