Generator: Update SDK /services/* (#3477) #39
This file contains hidden or 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
name: CD Workflow to update tags of services | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
check-version: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Push tag for each updated package | |
env: | |
GH_TOKEN: ${{ secrets.RENOVATE_TOKEN }} | |
run: | | |
git config --global user.name "SDK Releaser Bot" | |
git config --global user.email "[email protected]" | |
scripts/update-service-tags.sh |