Skip to content

Commit

Permalink
feat: 🚀 added gh action to release package
Browse files Browse the repository at this point in the history
  • Loading branch information
KillDozerX2 committed Oct 21, 2022
1 parent d0ce283 commit 726cc92
Show file tree
Hide file tree
Showing 3 changed files with 3,248 additions and 11,766 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/cd.release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
- name: Code Coverage
run: yarn coverage
Loading

0 comments on commit 726cc92

Please sign in to comment.