Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hexadecibal committed Jan 4, 2022
1 parent d8d54ec commit 218076d
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

github: [Telios-org]
35 changes: 35 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build Status

on:
push:
tags:
- '*'

jobs:
build:
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
publish:
name: Publish Package
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- uses: JS-DevTools/npm-publish@v1
with:
access: 'public'
token: ${{ secrets.NPM_TOKEN }}
19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "@telios/nebula-migrate",
"version": "1.0.0-alpha.1",
"description": "Migration tool for upgrading Nebula Drives between updates with breaking changes",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Telios-org/nebula-migrate.git"
},
"author": "hexadecibal",
"license": "MIT",
"bugs": {
"url": "https://github.com/Telios-org/nebula-migrate/issues"
},
"homepage": "https://github.com/Telios-org/nebula-migrate#readme"
}

0 comments on commit 218076d

Please sign in to comment.