Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading