Skip to content

Commit

Permalink
feat(release): add automation
Browse files Browse the repository at this point in the history
  • Loading branch information
yigiterdev committed Mar 24, 2023
1 parent 5af0406 commit 5a69bea
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 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}}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"scripts": {
"dev": "./node_modules/.bin/rollup -c -w",
"build": "npm run eslint && ./node_modules/.bin/rollup -c",
"build:release": "./node_modules/.bin/rollup -c",
"eslint": "./node_modules/.bin/eslint --ext .jsx,.js,.tsx,.ts src/"
},
"author": "Pera Wallet",
Expand Down

0 comments on commit 5a69bea

Please sign in to comment.