Skip to content

Commit

Permalink
update: build workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherbrumm committed Nov 28, 2023
1 parent 6386dee commit 27ffd1b
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/build_registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,16 @@ jobs:
run: python .github/build_registry.py .github/registry.yml
working-directory: ${{ github.workspace }}

- name: Commit and push changes
- name: Commit built registry
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git config --local user.email "[email protected]"
git config --local user.name "kyve-network"
git add .github/registry.yml
git commit -m "Update registry.yml"
git push
working-directory: ${{ github.workspace }}
git commit -m "🎉 Update registry.yml"
working-directory: ${{ github.workspace }}

- name: Push built registry
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.PAT_TOKEN }}
force: true

0 comments on commit 27ffd1b

Please sign in to comment.