Skip to content

Commit

Permalink
Merge pull request #123 from perawallet/feat/CNNCT-63
Browse files Browse the repository at this point in the history
feat(release): add automation
  • Loading branch information
mucahit authored Apr 5, 2023
2 parents 5af0406 + 782eb2c commit e4d0126
Show file tree
Hide file tree
Showing 3 changed files with 476 additions and 861 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: "🚀 release"

on:
push:
branches:
- main

jobs:
release:
name: 🚀 release
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: https://registry.npmjs.org

- name: Build app
run: npm ci && npm run build:release

- name: 🚀 publish
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
Loading

0 comments on commit e4d0126

Please sign in to comment.