-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #154 from kossiitkgp/fix-workflow
[v2] Fix workflow
- Loading branch information
Showing
2 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,9 +44,13 @@ jobs: | |
|
||
- name: Merge the changes from main branch to docs branch | ||
run: | | ||
git config user.email "[email protected]" | ||
git config user.name "koss-service" | ||
git config gpg.format ssh | ||
git config user.signingkey ~/.ssh/koss-service.pub | ||
git checkout -b docs || git checkout docs | ||
git pull origin docs | ||
git merge 'origin/${{ github.ref_name }}' | ||
git pull -S origin docs | ||
git merge -S 'origin/${{ github.ref_name }}' | ||
- name: Generate swagger.yaml and exit if no changes | ||
run: | | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ on: | |
push: | ||
branches: | ||
- main | ||
- v2-dev | ||
pull_request: | ||
|
||
jobs: | ||
|