Merge pull request #487 from FullStackWithLawrence/dependabot/pip/pyl… #438
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
--- | |
#--------------------------------------------------------- | |
# - Create a semantical release | |
# - Merge main into next, alpha, beta, and next-major | |
#--------------------------------------------------------- | |
name: Push to main | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
merge-main-to-dev-branches: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT }} | |
steps: | |
- name: Checkout code | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Merge main into next | |
uses: ./.github/actions/merge-branch | |
with: | |
github-token: ${{ env.GITHUB_TOKEN }} | |
source-branch: main | |
target-branch: next | |
- name: Merge main into next-major | |
uses: ./.github/actions/merge-branch | |
with: | |
github-token: ${{ env.GITHUB_TOKEN }} | |
source-branch: main | |
target-branch: next-major | |
- name: Merge main into alpha | |
uses: ./.github/actions/merge-branch | |
with: | |
github-token: ${{ env.GITHUB_TOKEN }} | |
source-branch: main | |
target-branch: alpha | |
- name: Merge main into beta | |
uses: ./.github/actions/merge-branch | |
with: | |
github-token: ${{ env.GITHUB_TOKEN }} | |
source-branch: main | |
target-branch: beta | |
semantic-release: | |
needs: merge-main-to-dev-branches | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT }} | |
steps: | |
- uses: actions/checkout@v4 | |
id: checkout | |
with: | |
persist-credentials: false | |
- name: Semantic Release | |
uses: cycjimmy/semantic-release-action@v4 | |
id: semantic | |
with: | |
branches: | | |
[ | |
'+([0-9])?(.{+([0-9]),x}).x', | |
'main', | |
'next', | |
'next-major', | |
{ | |
name: 'beta', | |
prerelease: true | |
}, | |
{ | |
name: 'alpha', | |
prerelease: true | |
} | |
] | |
extra_plugins: | | |
@semantic-release/git | |
@semantic-release/changelog | |
env: | |
GIT_COMMITTER_NAME: github-actions[bot] | |
GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com | |
GIT_AUTHOR_NAME: github-actions[bot] | |
GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com | |
- name: Publish To GitHub Package Registry | |
id: publish | |
if: steps.semantic.outputs.new_release_published == 'true' | |
run: echo "new release was published" | |
shell: bash | |
- name: Push updates to branch for major version | |
id: push_major | |
if: steps.semantic.outputs.new_release_published == 'true' | |
run: "git push https://x-access-token:${{ env.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git HEAD:refs/heads/v${{steps.semantic.outputs.new_release_major_version}}" | |
shell: bash |