Skip to content

fix: add address validation (#16) #6

fix: add address validation (#16)

fix: add address validation (#16) #6

Workflow file for this run

name: "Semantic release"
"on":
push:
branches: [ master ]
jobs:
release:
if: ${{ github.event.repository.full_name == github.repository }} && {{ !contains(github.event.head_commit.message, "skip ci") }}
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
# Whether to configure the token or SSH key with the local git config
# Default: true
persist-credentials: false # <--- checking this in commit context
- name: "Enable yarn cache"
uses: c-hive/gha-yarn-cache@v2 # using cache
- name: "Setup node@14"
uses: actions/setup-node@v2
with:
node-version: 14
- name: "Install dependencies"
run: |
yarn set version 3.1.1
yarn install
- name: "Semantic release"
run: yarn semantic-release
env:
CI: true
HUSKY: 0
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}