Skip to content

Added functionality to update a specific route in the web.php file if it exists. This change was made to ensure that the specified route is updated correctly during the installation process. #11

Added functionality to update a specific route in the web.php file if it exists. This change was made to ensure that the specified route is updated correctly during the installation process.

Added functionality to update a specific route in the web.php file if it exists. This change was made to ensure that the specified route is updated correctly during the installation process. #11

Workflow file for this run

name: Auto Tag and Release
on:
pull_request:
types: [closed]
branches:
- main
jobs:
release:
if: github.event.pull_request.merged == true
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: 'main'
fetch-depth: '0'
- name: Bump version and push tag
id: bump_version
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch
WITH_V: true
RELEASE_BRANCHES: main
- name: Release
id: release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GHA_PERSONAL_ACCESS_TOKEN }}
with:
tag_name: ${{ steps.bump_version.outputs.new_tag }}
generate_release_notes: true