Skip to content

Commit

Permalink
code
Browse files Browse the repository at this point in the history
  • Loading branch information
airishmyntra committed Dec 6, 2023
1 parent aad45f4 commit 907c151
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/mergedeploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: MergeDeploy
on:
push:
branches:
- deploy
pull_request:
types: [closed]
jobs:
build:
name: MergeDeploy
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: 16.17.1
- name: Install pnpm
run: npm i [email protected] -g
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Release Applique
run: npm run release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 907c151

Please sign in to comment.