Skip to content

Commit

Permalink
feat: apply changes for StreamYard (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
fbaldi6 authored Dec 18, 2024
1 parent 19a6954 commit c275a2b
Show file tree
Hide file tree
Showing 10 changed files with 9,673 additions and 34 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Deploy Player
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Deployment
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: actions/setup-node@v3
with:
node-version: "20.14.0"
registry-url: "https://npm.pkg.github.com"
scope: "@streamyard"
- name: Install Dependencies
run: npm ci
- name: Build Package
run: npm run package
- name: Publish
if: ${{ github.ref == 'refs/heads/main' }}
run: npm publish --access restricted ./build/package
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "typeorm",
"name": "@streamyard/typeorm",
"private": true,
"version": "0.3.20",
"description": "Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.",
"version": "0.3.20-1",
"description": "Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB, Spanner databases.",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
Expand Down Expand Up @@ -66,7 +66,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/typeorm/typeorm.git"
"url": "https://github.com/streamyard/typeorm.git"
},
"bugs": {
"url": "https://github.com/typeorm/typeorm/issues"
Expand Down
Loading

0 comments on commit c275a2b

Please sign in to comment.