-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa74909
commit 8e09310
Showing
1 changed file
with
3 additions
and
8 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 |
---|---|---|
|
@@ -49,6 +49,7 @@ jobs: | |
with: | ||
ref: ${{ inputs.ref }} | ||
repository: ${{ inputs.repository }} | ||
token: ${{ secrets.INFINISPAN_RELEASE_TOKEN }} | ||
|
||
- name: Determine Upstream Version | ||
run: | | ||
|
@@ -66,16 +67,10 @@ jobs: | |
IMAGE: ${{ inputs.image }} | ||
VERSION: ${{ env.VERSION }} | ||
|
||
- name: Commit changes and create tag | ||
- name: Commit changes and push to repository | ||
run: | | ||
git config user.email "[email protected]" | ||
git config user.name "Infinispan" | ||
git add config/manager/manager.yaml documentation/asciidoc/topics/attributes/community-attributes.adoc documentation/asciidoc/topics/supported_operands/ | ||
git commit -m "Add Operand ${{ env.VERSION }}" | ||
- name: Push Git changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.INFINISPAN_RELEASE_TOKEN }} | ||
branch: ${{ inputs.ref }} | ||
repository: ${{ inputs.repository }} | ||
git push |