Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
e9ccd5ffb0 | |||
c57978c228 | |||
f0aa4b92c6 | |||
503efc10fc | |||
0b80dbf999 | |||
ce2208f1b2 |
20
.github/workflows/build.yaml
vendored
20
.github/workflows/build.yaml
vendored
@ -16,15 +16,19 @@ jobs:
|
|||||||
- name: Install & Build
|
- name: Install & Build
|
||||||
run: npm i && npm run build
|
run: npm i && npm run build
|
||||||
|
|
||||||
- name: Upload to Registry
|
- name: Publish Library
|
||||||
uses: ztimson/actions/npm/publish@develop
|
run: |
|
||||||
|
if [ "${{github.ref_name}}" = "master" ]; then
|
||||||
|
REGISTRY="${{github.server_url}}/api/packages/${{github.repository_owner}}/npm/"
|
||||||
|
npm set registry "$REGISTRY"
|
||||||
|
npm set $(echo $REGISTRY | sed s%http:%% | sed s%https:%% ):_authToken "${{secrets.DEPLOY_TOKEN}}"
|
||||||
|
npm publish || echo "Failed to publish"
|
||||||
|
|
||||||
- name: Upload to NPM
|
REGISTRY="https://registry.npmjs.org/"
|
||||||
uses: ztimson/actions/npm/publish@develop
|
npm set registry "$REGISTRY"
|
||||||
with:
|
npm set $(echo $REGISTRY | sed s%http:%% | sed s%https:%% ):_authToken "${{secrets.NPM_TOKEN}}"
|
||||||
owner: ztimson
|
npm publish || echo "Failed to publish"
|
||||||
registry: https://registry.npmjs.org/
|
fi
|
||||||
token: ${{secrets.NPM_TOKEN}}
|
|
||||||
tag:
|
tag:
|
||||||
name: Tag Version
|
name: Tag Version
|
||||||
needs: build
|
needs: build
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@ztimson/node-utils",
|
"name": "@ztimson/node-utils",
|
||||||
"version": "1.0.2",
|
"version": "1.0.4",
|
||||||
"description": "CSS Utility Classes",
|
"description": "CSS Utility Classes",
|
||||||
"author": "ztimson",
|
"author": "ztimson",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
@ -3,7 +3,7 @@ import {exec, execSync} from 'child_process';
|
|||||||
export function $(str: TemplateStringsArray, ...args: string[]): Promise<string> {
|
export function $(str: TemplateStringsArray, ...args: string[]): Promise<string> {
|
||||||
let cmd = str.reduce((acc, part, i) => acc + part + (args[i] || ''), '');
|
let cmd = str.reduce((acc, part, i) => acc + part + (args[i] || ''), '');
|
||||||
return new Promise((res, rej) => exec(cmd, (err, stdout, stderr) => {
|
return new Promise((res, rej) => exec(cmd, (err, stdout, stderr) => {
|
||||||
if(err || stderr) return rej(err || stderr);
|
if(err) return rej(stderr || err);
|
||||||
return res(stdout);
|
return res(stdout);
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user