Skip to content

Commit

Permalink
Merge pull request #12 from xmtp/release
Browse files Browse the repository at this point in the history
First release
  • Loading branch information
nplasterer authored Apr 27, 2023
2 parents 2b9e6bb + e467377 commit d6d2d96
Show file tree
Hide file tree
Showing 3 changed files with 13,463 additions and 7,801 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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@v3
- name: Install dependencies
run: npm ci
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
Loading

0 comments on commit d6d2d96

Please sign in to comment.