Skip to content

Commit

Permalink
chore: merge in master on update dev client
Browse files Browse the repository at this point in the history
  • Loading branch information
mfal committed Jun 11, 2024
1 parent ca4fa62 commit b9eb311
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/update-client-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,16 @@ jobs:
if: github.ref != 'refs/heads/dev'
run: git branch --track master origin/dev

- name: Merge in master ⛙
run: |
git merge origin master --strategy-option theirs
- name: Update OpenAPI ⬇️
if: github.ref == 'refs/heads/dev'
run: |
yarn nx run @mittwald/api-client:build:client-dev
if [ $(git status --porcelain . | wc -l) -gt 0 ] ; then
git add .
git merge origin master --strategy-option theirs
yarn test
git commit -m "chore: update generated development client";
git push origin
Expand Down

0 comments on commit b9eb311

Please sign in to comment.