Skip to content

Commit

Permalink
Using Dapr Bot to cut release tag to autorun Dapr build. (dapr#7252)
Browse files Browse the repository at this point in the history
Signed-off-by: Artur Souza <[email protected]>
Co-authored-by: Mukundan Sundararajan <[email protected]>
Co-authored-by: Loong Dai <[email protected]>
  • Loading branch information
3 people authored Dec 16, 2023
1 parent 2d48367 commit e90b54d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,11 @@ jobs:
sudo apt-get update
sudo apt-get install pcre2-utils
- name: Create release branch and tag
run: ./.github/scripts/create-release.sh ${{ inputs.rel_version }}
env:
GITHUB_TOKEN: ${{ secrets.DAPR_BOT_TOKEN }}
run: |
git config user.email "[email protected]"
git config user.name "Dapr Bot"
# Update origin with token
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
./.github/scripts/create-release.sh ${{ inputs.rel_version }}

0 comments on commit e90b54d

Please sign in to comment.