Skip to content

Commit

Permalink
Merge pull request #27 from kexa-io/dev
Browse files Browse the repository at this point in the history
merge dev job
  • Loading branch information
aeppling authored Sep 17, 2024
2 parents a1bd94c + 8d5cca2 commit b3a7c9b
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/fullrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,36 @@ jobs:
git config user.email "[email protected]"
git add charts/kexa-chart/Chart.yaml
git commit -m "chore(release): update Chart.yaml version"
git push origin main
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}


merge-to-dev:
needs: semantic-release
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main

- name: Merge main into dev
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
git fetch origin dev
git checkout dev
git merge main --no-edit
git push origin dev
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

helm-release:
needs: semantic-release
needs: merge-to-dev
permissions:
contents: write
runs-on: ubuntu-latest
Expand Down

0 comments on commit b3a7c9b

Please sign in to comment.