Skip to content

Commit

Permalink
Prepare publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
kossnocorp committed Sep 22, 2021
1 parent 870f6f9 commit 813ab70
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish npm package

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest

permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: "14.x"
registry-url: "https://npm.pkg.github.com"
scope: "@chirrapp"

- run: npm install

- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning].
This change log follows the format documented in [Keep a CHANGELOG].

[semantic versioning]: http://semver.org/
[keep a changelog]: http://keepachangelog.com/

## 2.0.0 - 2021-09-22

Initial forked version. See [the origin](https://github.com/Tessmore/sbd) for the past versions history.

0 comments on commit 813ab70

Please sign in to comment.