Skip to content

feat: cheqd explorer upgrade to v2 [web-cheqd] (#1330) #232

feat: cheqd explorer upgrade to v2 [web-cheqd] (#1330)

feat: cheqd explorer upgrade to v2 [web-cheqd] (#1330) #232

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- run: yarn --immutable --immutable-cache
- name: Create Release Pull Request
uses: changesets/action@v1
with:
version: yarn changeset version
publish: yarn changeset tag
createGithubReleases: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}