Meshery Extensions v0.8.2-1 #750
Workflow file for this run
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: Meshery Extension Release updater | |
on: | |
release: | |
types: [published] | |
jobs: | |
Update: | |
name: Release updater | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# token here with write access to meshery-istio repo | |
with: | |
token: ${{ secrets.GH_ACCESS_TOKEN }} | |
ref: 'master' | |
repository: 'layer5labs/meshery-extensions' | |
- name: Update extensions_releases.json | |
run: rm -f build/extension_releases.json && curl -s https://api.github.com/repos/layer5labs/meshery-extensions-packages/releases >> build/extension_releases.json; | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_user_name: l5io | |
commit_user_email: [email protected] | |
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
commit_options: '--signoff' | |
commit_message: 'updated extension_releases.json' |