[Tooling][Hud ]Add Performance Render Profiler wrapper (#5905) #2337
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: Push prod tags to Rockset query lambdas | |
# This action pushes the "prod" tag to every query lambda version that we | |
# reference from our application. | |
on: | |
push: | |
branches: | |
- main | |
defaults: | |
run: | |
working-directory: torchci | |
jobs: | |
push-rockset-tags: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: yarn install --frozen-lockfile | |
- run: yarn node scripts/pushRocksetTags.mjs | |
env: | |
ROCKSET_API_KEY: ${{ secrets.ROCKSET_API_KEY }} |