Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
fix: upgrade custom-media-element (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
luwes authored Jan 2, 2024
1 parent 48f43b2 commit d559665
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 45 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,20 @@ on:
- minor
- major
- prerelease
- from-package
- from-git
prerelease:
type: choice
required: false
description: Pre-release
options:
-
- canary
- beta
dryrun:
description: 'Dry-run'
type: boolean

run-name: Deploy ${{ inputs.version }} ${{ inputs.dryrun && '--dry-run' || '' }} ${{ inputs.prerelease && format('--prerelease {0}', inputs.prerelease) || '' }}

jobs:
deploy:
Expand All @@ -48,4 +54,9 @@ jobs:
- uses: fregante/setup-git-user@v1
- run: npm ci
- run: npm run lint
- run: npx --yes [email protected] release ${{ inputs.version }} --prerelease "${{ inputs.prerelease }}" --provenance --changelog --github-release
- run: npx --yes [email protected] release ${{ inputs.version }} ${{ inputs.dryrun && '--dry-run' || '' }} ${{ inputs.prerelease && format('--prerelease {0}', inputs.prerelease) || '' }} --provenance --changelog --github-release --verbose
- name: Get NPM version
id: npm-version
uses: martinbeentjes/[email protected]
- name: Released ${{ steps.npm-version.outputs.current-version}} ✨
run: echo ${{ steps.npm-version.outputs.current-version}}
80 changes: 40 additions & 40 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"scripts": {
"lint": "npx eslint *.js -c ./node_modules/wet-run/.eslintrc.json",
"test": "wet run",
"test": "wet test",
"dev": "wet serve"
},
"repository": {
Expand All @@ -26,10 +26,10 @@
},
"homepage": "https://github.com/muxinc/castable-video#readme",
"dependencies": {
"custom-media-element": "~1.1.3"
"custom-media-element": "~1.2.2"
},
"devDependencies": {
"wet-run": "^0.9.3"
"wet-run": "^1.0.1"
},
"keywords": [
"chromecast",
Expand Down

1 comment on commit d559665

@vercel
Copy link

@vercel vercel bot commented on d559665 Jan 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

castable-video – ./

castable-video.vercel.app
castable-video-git-main-mux.vercel.app
castable-video-mux.vercel.app

Please sign in to comment.