Merge pull request #101 from zCloak-Network/batch-decrypt #135
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
if: github.repository == 'zCloak-Network/zkid-sdk' | |
runs-on: ubuntu-latest | |
env: | |
YARN_ENABLE_SCRIPTS: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
cache: "yarn" | |
- name: Install deps | |
run: | | |
yarn install --immutable | grep -v 'YN0013' | |
- name: Create Release Pull Request | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
version: yarn zcloak-dev-bump-version | |
publish: yarn zcloak-ci-ghact-release | |
commit: "chore: Version Packages" | |
title: "chore: Version Packages" |