feat: adding github workflow

This commit is contained in:
carlos 2022-06-04 16:18:55 -04:00
parent 7bcc09d53d
commit 0eb5e4fd56
3 changed files with 43 additions and 6 deletions

18
node_modules/.package-lock.json generated vendored
View File

@ -1,6 +1,6 @@
{
"name": "time-function",
"version": "0.0.1",
"name": "convert-time-gmt",
"version": "0.0.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
@ -2369,6 +2369,20 @@
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
"dev": true
},
"node_modules/fsevents": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
"dev": true,
"hasInstallScript": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
},
"node_modules/function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",

8
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "time-function",
"version": "0.0.1",
"name": "convert-time-gmt",
"version": "0.0.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "time-function",
"version": "0.0.1",
"name": "convert-time-gmt",
"version": "0.0.3",
"license": "MIT",
"dependencies": {
"node-gmt": "^0.0.2"

23
workflows/publish.yml Normal file
View File

@ -0,0 +1,23 @@
name: "release"
on:
push:
branches:
- master
jobs:
release:
name: 🚀 release
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2.4.2
- name: node
uses: actions/setup-node@v3.2.0
with:
node-version: 12
registry-url: https://registry.npmjs.org
- name: publish
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}