Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: send notification to teamsfx when new version released #1994

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/push-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ jobs:
- name: Attach mgt-spfx solution to GitHub release
run: node scripts/uploadSpfxSolution.js ${{secrets.GITHUB_TOKEN}} ${{needs.version.outputs.package-version}}

- name: Notify TeamsFx Repo
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.TEAMSFX_REPO_ACCESS_TOKEN }}
repository: OfficeDev/TeamsFx
event-type: graph-toolkit-released
client-payload: '{"version": "${{ needs.version.outputs.package-version }}"}'

storybook:
runs-on: ubuntu-latest

Expand Down