We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba9a735 commit c89b398Copy full SHA for c89b398
.github/workflows/release.yml
@@ -20,6 +20,15 @@ jobs:
20
fetch-depth: 0
21
- name: Update "main" branch
22
run: |-
23
+ # Set the git user
24
+ git config --global user.name "${{ github.triggering_actor }}"
25
+ git config --global user.email "khiops.team@orange.com"
26
+
27
+ # Fetch the dev branch
28
+ git fetch origin dev
29
+ git switch dev # To activate the local copy
30
+ git switch main
31
32
# Merge dev into main, tag the merge commit
33
git merge --no-ff -m'Merge branch 'dev' for release ${{ inputs.version }}' dev
34
git tag ${{ inputs.version }}
0 commit comments