Skip to content

feat: update submodule, add FLUX.2-klein support #1

feat: update submodule, add FLUX.2-klein support

feat: update submodule, add FLUX.2-klein support #1

Workflow file for this run

name: Release

Check failure on line 1 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: update-major-version
on:
workflow_dispatch: # Allow manual triggering from the Actions tab
push:
branches:
- main
jobs:
update-major-version:
runs-on: ubuntu-latest
# ===========================================
# Update Develop Branch
# ===========================================
update-develop-branch:
needs:
- update-major-version
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