Skip to content
This repository was archived by the owner on Dec 17, 2023. It is now read-only.

Commit 3bc29a1

Browse files
committed
add publish workflow, bump latest version
1 parent 5bf424f commit 3bc29a1

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.github/workflows/publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: create-djs-app
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
publish:
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: 12
14+
registry-url: https://registry.npmjs.org/
15+
- run: npm ci
16+
- run: npm publish
17+
env:
18+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.github

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-djs-app",
3-
"version": "1.1.2-dev.6",
3+
"version": "1.1.2",
44
"description": "Create a Discord.js project easily.",
55
"main": "index.js",
66
"bin": {

0 commit comments

Comments
 (0)