Skip to content

Commit

Permalink
chore: adds commit step
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman committed Oct 17, 2023
1 parent a3d31e7 commit afbdb11
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,20 @@ jobs:
with:
repository: ${{ inputs.deployment_repo }}
token: ${{ secrets.token }}
- name: Configure git
run: |
git config --global user.email "[email protected]"
git config --global user.name "catalyst-cibot"
- name: Merge hashes
uses: input-output-hk/catalyst-ci/actions/merge@deploy-action
with:
hash_file: "src/kube/environments/${{ inputs.environment }}/hashes.json"
images: ${{ inputs.images }}
tag: ${{ inputs.tag }}
- name: Run diff
run: git --no-pager diff
run: git --no-pager diff
- name: Commit and push
uses: EndBug/add-and-commit@v9
with:
author_name: catalyst-cibot
author_email: [email protected]
message: "chore: updates ${{ github.event.repository.name }} deployments"
push: false
- name: Run git log
run: git --no-pager log --oneline -n 5

0 comments on commit afbdb11

Please sign in to comment.