Skip to content

Commit

Permalink
feat: publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsains committed Sep 4, 2023
1 parent 7fc6ef0 commit 40fe1de
Show file tree
Hide file tree
Showing 4 changed files with 10,096 additions and 4,483 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release_ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: release:ci

on:
push:
branches: [main]


permissions:
contents: write
issues: write
pull-requests: write

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Semantic Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 40fe1de

Please sign in to comment.