Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
44dd2a659a | |||
c2b3d7dc3c |
106
.github/workflows/build.yaml
vendored
106
.github/workflows/build.yaml
vendored
@ -1,53 +1,53 @@
|
|||||||
name: Publish Library
|
name: Publish Library
|
||||||
run-name: Publish Library
|
run-name: Publish Library
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build NPM Project
|
name: Build NPM Project
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: node:alpine
|
container: node:alpine
|
||||||
steps:
|
steps:
|
||||||
- name: Clone Repository
|
- name: Clone Repository
|
||||||
uses: ztimson/actions/clone@develop
|
uses: ztimson/actions/clone@develop
|
||||||
|
|
||||||
- name: Install & Build
|
- name: Install & Build
|
||||||
run: npm i && npm run build
|
run: npm i && npm run build
|
||||||
|
|
||||||
- name: Upload to Registry
|
- name: Upload to Registry
|
||||||
uses: ztimson/actions/npm/publish@develop
|
uses: ztimson/actions/npm/publish@develop
|
||||||
|
|
||||||
- name: Upload to NPM
|
- name: Upload to NPM
|
||||||
uses: ztimson/actions/npm/publish@develop
|
uses: ztimson/actions/npm/publish@develop
|
||||||
with:
|
with:
|
||||||
owner: ztimson
|
owner: ztimson
|
||||||
registry: https://registry.npmjs.org/
|
registry: https://registry.npmjs.org/
|
||||||
token: ${{secrets.NPM_TOKEN}}
|
token: ${{secrets.NPM_TOKEN}}
|
||||||
tag:
|
tag:
|
||||||
name: Tag Version
|
name: Tag Version
|
||||||
needs: build
|
needs: build
|
||||||
if: ${{github.ref_name}} == 'release'
|
if: ${{github.ref_name}} == 'release'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: node:alpine
|
container: node:alpine
|
||||||
steps:
|
steps:
|
||||||
- name: Clone Repository
|
- name: Clone Repository
|
||||||
uses: ztimson/actions/clone@develop
|
uses: ztimson/actions/clone@develop
|
||||||
|
|
||||||
- name: Get Version Number
|
- name: Get Version Number
|
||||||
run: echo "VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')" >> $GITHUB_ENV
|
run: echo "VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Tag Version
|
- name: Tag Version
|
||||||
uses: ztimson/actions/tag@develop
|
uses: ztimson/actions/tag@develop
|
||||||
with:
|
with:
|
||||||
tag: ${{env.VERSION}}
|
tag: ${{env.VERSION}}
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
name: Publish CDN & Docs
|
name: Publish CDN & Docs
|
||||||
needs: build
|
needs: build
|
||||||
uses: ztimson/actions/.github/workflows/docker.yaml@develop
|
uses: ztimson/actions/.github/workflows/docker.yaml@develop
|
||||||
with:
|
with:
|
||||||
name: ztimson/css-utils
|
name: ztimson/node-utils
|
||||||
repository: ${{github.server_url}}/${{github.repository}}.git
|
repository: ${{github.server_url}}/${{github.repository}}.git
|
||||||
pass: ${{secrets.DEPLOY_TOKEN}}
|
pass: ${{secrets.DEPLOY_TOKEN}}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@ztimson/node-utils",
|
"name": "@ztimson/node-utils",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"description": "CSS Utility Classes",
|
"description": "CSS Utility Classes",
|
||||||
"author": "ztimson",
|
"author": "ztimson",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import readline from 'node:readline';
|
import readline from 'readline';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve input from the CLI
|
* Retrieve input from the CLI
|
||||||
|
Loading…
x
Reference in New Issue
Block a user