Skip to content

add all and consent flags to diagnostics command #7

add all and consent flags to diagnostics command

add all and consent flags to diagnostics command #7

Workflow file for this run

name: Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/composite/verify
- name: Set version from git tag
if: ${{ github.event_name != 'workflow_dispatch' }}
run: |
VERSION=$(echo ${GITHUB_REF#"refs/tags/v"})
echo "Setting version from tags to $VERSION"
echo "VERSION=$VERSION" >> $GITHUB_ENV
- run: npm version "$VERSION" --no-git-tag-version
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.HD_CLI_NPM_TOKEN }}