Skip to content
This repository was archived by the owner on Nov 27, 2024. It is now read-only.

Commit 60ee4c5

Browse files
committed
Add a GH workflow for build and publish.
1 parent e779076 commit 60ee4c5

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.github/workflows/publish.yaml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Build and Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
19+
- name: Set up Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: "8.9.4"
23+
24+
- name: Install Yarn
25+
run: npm install -g yarn
26+
27+
- name: Install dependencies
28+
run: yarn install
29+
30+
- name: Build package
31+
run: yarn build
32+
33+
- name: Deploy to Artifactory
34+
env:
35+
ARTIFACTORY_URL: ${{ secrets.ARTIFACTORY_URL }}
36+
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
37+
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
38+
run: yarn publish

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ npm i draft-js-checkable-list-item
1515

1616
[Live demo](https://sugarshin.github.io/draft-js-checkable-list-item/)
1717

18+
## data.world publishing
19+
20+
Push to `master` to publish to Artifactory.
21+
1822
## Usage
1923

2024
Example

0 commit comments

Comments
 (0)