We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cf382d commit f0bee02Copy full SHA for f0bee02
.github/workflows/release.yml
@@ -427,3 +427,16 @@ jobs:
427
version: '${{ env.TAILWINDCSS_VERSION }}'
428
}
429
})
430
+
431
+ - name: Trigger CDN Update
432
+ if: env.RELEASE_CHANNEL == 'latest'
433
+ uses: actions/github-script@v6
434
+ with:
435
+ github-token: ${{ secrets.CDN_TOKEN }}
436
+ script: |
437
+ await github.rest.actions.createWorkflowDispatch({
438
+ owner: 'tailwindlabs',
439
+ repo: 'jit-cdn',
440
+ ref: 'main',
441
+ workflow_id: 'update-versions.yml',
442
+ })
0 commit comments