feat: allow transcript from url (#737) #232
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: 🌱 Release Edge | |
on: | |
push: | |
branches: | |
- 'edge' | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm ci | |
- name: Get releases | |
id: fetch-latest-release | |
uses: ./.github/actions/fetch-latest-release | |
with: | |
github_token: ${{ github.token }} | |
- name: Calculate edge version | |
id: calculate-edge-version | |
uses: ./.github/actions/calculate-edge-version | |
with: | |
version: ${{ steps.fetch-latest-release.outputs.tag_name }} | |
- name: Release PR | |
uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
token: ${{ secrets.BOT_TOKEN }} | |
release-type: node | |
release-as: ${{ steps.calculate-edge-version.outputs.next-edge }} | |
prerelease: true | |
default-branch: ${{ github.ref_name }} | |
changelog-path: CHANGELOG-edge.md | |
# The logic below handles the npm publication: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
registry-url: 'https://registry.npmjs.org' | |
if: ${{ steps.release.outputs.release_created }} | |
# these if statements ensure that a publication only occurs when | |
# a new release is created: | |
- run: npm run build-all | |
if: ${{ steps.release.outputs.release_created }} | |
- run: npm publish --tag edge | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
if: ${{ steps.release.outputs.release_created }} | |
- name: Set Notification Messages | |
id: set-messages | |
if: steps.release.outputs.release_created | |
run: | | |
if [[ ${{ job.status }} == "success" ]]; then | |
echo "SLACK_TITLE=Video Player ${{ steps.release.outputs.tag_name }} Deployed" >> $GITHUB_OUTPUT | |
echo "SLACK_MESSAGE=Success :rocket: cloudinary-video-player version ${{ steps.release.outputs.tag_name }} deployed successfully" >> $GITHUB_OUTPUT | |
echo "SLACK_FOOTER=Check it out at https://cloudinary.github.io/cloudinary-video-player/?ver=edge&min=true" >> $GITHUB_OUTPUT | |
else | |
echo "SLACK_TITLE=Video Player Deployment Failed" >> $GITHUB_OUTPUT | |
echo "SLACK_MESSAGE=:alert: Failed to deploy cloudinary-video-player version ${{ steps.release.outputs.tag_name }}" >> $GITHUB_OUTPUT | |
echo "SLACK_FOOTER=See log here https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{ github.job }}" >> $GITHUB_OUTPUT | |
fi | |
shell: bash | |
- name: Slack Notification | |
if: steps.release.outputs.release_created | |
uses: rtCamp/[email protected] | |
env: | |
SLACK_WEBHOOK: ${{ vars.FE_DEPLOYMENTS_SLACK_WEBHOOK }} | |
SLACK_CHANNEL: 'rnd-fe-releases' | |
SLACK_COLOR: ${{ job.status }} | |
SLACK_TITLE: ${{ steps.set-messages.outputs.SLACK_TITLE }} | |
SLACK_MESSAGE: ${{ steps.set-messages.outputs.SLACK_MESSAGE }} | |
SLACK_FOOTER: ${{ steps.set-messages.outputs.SLACK_FOOTER }} | |
- uses: gacts/purge-jsdelivr-cache@v1 | |
if: steps.release.outputs.release_created | |
with: | |
url: | | |
https://cdn.jsdelivr.net/npm/cloudinary-video-player@edge |