Skip to content

feat: update submodule #1

feat: update submodule

feat: update submodule #1

Workflow file for this run

name: Release
on:
workflow_dispatch: # Allow manual triggering from the Actions tab
push:
branches:
- main
jobs:
# ===========================================
# Update Develop Branch
# ===========================================
update-develop-branch:
runs-on: ubuntu-latest
steps:
# -------------------------------------------
# Checkout Main
# -------------------------------------------
- name: Checkout Main
uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch all history
ref: main
# -------------------------------------------
# Checkout Develop
# -------------------------------------------
- name: Checkout Develop
uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch all history
ref: dev
- name: Fetch Main Branch
run: git fetch origin main
- name: Merge Main into Develop
run: |
# Configure github actions bot
git config --global user.name "github-actions"
git merge origin/main --no-edit
git push