Update Metadata #10
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
name: Update Metadata | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseDescription: | |
required: true | |
default: $(git log --max-count=1 --pretty=%B) | |
jobs: | |
update-metadata: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# Qutoes in message are not allowed | |
- name: Update metadata.yaml | |
run: | | |
SHA=$(git rev-parse HEAD) | |
MESSAGE=${{ github.event.inputs.releaseDescription }} | |
NEW_VERSION=" - sha: $SHA\n changeNotes: $MESSAGE" | |
echo "New version info to be added: \n" | |
echo "$NEW_VERSION" | |
sed -i "s|versions:|versions:\n$NEW_VERSION|" metadata.yaml | |
- name: Commit and push if changed | |
run: | | |
git config --local user.email [email protected] | |
git config --local user.name amplitude-sdk-bot | |
git add metadata.yaml | |
git commit -m "Update metadata.yaml" || exit 0 # Exit 0 if no changes | |
git push |