From 2d0fc67a99571ac9239234ac4e25163fb3022613 Mon Sep 17 00:00:00 2001 From: Roberto Bruggemann <1833249+rbruggem@users.noreply.github.com> Date: Fri, 12 Nov 2021 15:09:41 +0000 Subject: [PATCH] Ensure published package is built (#7) --- .github/workflows/publish.yml | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 966309f..f30a474 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,6 +14,7 @@ jobs: node-version: 16 registry-url: https://registry.npmjs.org/ - run: yarn install + - run: yarn build - run: npm publish --access public env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} diff --git a/package.json b/package.json index da070f6..4faf5da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openapi-vuepress-markdown", - "version": "0.0.6", + "version": "0.0.7", "description": "This package generates vuepress compatible markdown from an openapi schema", "main": "./dist/openapi-vuepress-markdown.js", "repository": "https://github.com/lune-climate/openapi-vuepress-markdown.git",