Skip to content

Commit

Permalink
feat : add versioning and release to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Shayan-Ghani committed Aug 28, 2024
1 parent 029a61e commit ca91e5a
Showing 1 changed file with 81 additions and 1 deletion.
82 changes: 81 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
- actions
- release
pull_request:
branches:
- main
Expand Down Expand Up @@ -100,4 +101,83 @@ jobs:
pip install ansible wheel
- name: check playbook and role's syntax
run: bash linter.sh ansible
run: bash linter.sh ansible

changelog:
runs-on: ubuntu-latest
name: Changelog
needs:
- lint-ansible
- lint-boundary-terraform
- lint-vault-terraform

if: github.event_name != 'pull_request'

outputs:
skipped: ${{ steps.changelog.outputs.skipped }}
version: ${{ steps.changelog.outputs.version }}
tag: "v${{ steps.changelog.outputs.version }}"

env:
PR_BRANCH: release-ci-${{ github.sha }}

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Create Branch
run: |
git checkout -b ${{ env.PR_BRANCH }}
- name: Create Changelog
uses: TriPSs/conventional-changelog-action@dd734f74fce61a6e02f821ee1b5930bc79a23534 # v5
id: changelog
with:
github-token: ${{ github.token }}
git-user-name: "github-actions[bot]"
git-user-email: "github-actions[bot]@users.noreply.github.com"
git-branch: ${{ env.PR_BRANCH }}
skip-git-pull: true
output-file: false
version-file: .github/package.yml
create-summary: true


- name: Create Changelog PR
if: steps.changelog.outputs.skipped == 'false'
run: |
git add .
git commit -m "chore(release): v${{ steps.changelog.outputs.version }} [skip-ci]"
git push --set-upstream origin ${{ env.PR_BRANCH }}
gh pr create --base master --head ${{ env.PR_BRANCH }} --title 'chore(release): v${{ steps.changelog.outputs.version }} [skip-ci]' --body 'created new release from ${{ env.PR_BRANCH }}'
env:
GH_TOKEN: ${{ github.token }}

- name: Merge Changelog PR
if: steps.changelog.outputs.skipped == 'false'
run: |
gh pr merge --auto --delete-branch ${{ env.PR_BRANCH }}
env:
GH_TOKEN: ${{ github.token }}

release:
name: Release
needs: changelog
if: github.event_name != 'pull_request' && needs.changelog.outputs.skipped == 'false'
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

- name: run tests and lint
uses: ./.github/workflows/test.yml
####### include test.yml

- name: Create Release
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
with:
token: ${{ github.token }}
tag_name: ${{ needs.changelog.outputs.tag }}
prerelease: false
draft: false
generate_release_notes: true
name: ${{ needs.changelog.outputs.tag }}

0 comments on commit ca91e5a

Please sign in to comment.