mirror of
https://github.com/archtechx/alpine-reactive.git
synced 2025-12-12 08:24:03 +00:00
Add .github files
This commit is contained in:
parent
8b03ec7551
commit
6e6b0984e4
2 changed files with 20 additions and 0 deletions
3
.github/FUNDING.yml
vendored
Normal file
3
.github/FUNDING.yml
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# These are supported funding model platforms
|
||||||
|
|
||||||
|
github: stancl
|
||||||
17
.github/workflows/publish.yaml
vendored
Normal file
17
.github/workflows/publish.yaml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
name: Publish Node.js package
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [created]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: '12.x'
|
||||||
|
registry-url: 'https://registry.npmjs.org'
|
||||||
|
- run: npm install
|
||||||
|
- run: npm publish --access=public
|
||||||
|
env:
|
||||||
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue