diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1dc648c..6eec818 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,8 +1,7 @@ name: Release on: - release: - types: [ created ] + workflow_dispatch: jobs: npm: @@ -24,7 +23,7 @@ jobs: - name: Install Dependencies run: npm ci - name: Generate Changelog - run: npx standard-version --skip.tag + run: npx standard-version - name: Publish run: npm publish env: diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ed5bff3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + +All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +### [1.0.1](https://github.com/J-R-Oliver/gl-code-quality-openapi-validator/compare/v1.0.0...v1.0.1) (2022-06-13) + +## [1.0.0](https://github.com/J-R-Oliver/gl-code-quality-openapi-validator/compare/e32285d1baedbb90759a59362ea16caf8266d796...v1.0.0) (2022-06-13) + + +### Features + +* adds release workflow ([c77c0e0](https://github.com/J-R-Oliver/gl-code-quality-openapi-validator/commit/c77c0e009f3e43c16e19f6541ca2eb7821c4f634)) + + +### Bug Fixes + +* adds fix for git revisions ([e32285d](https://github.com/J-R-Oliver/gl-code-quality-openapi-validator/commit/e32285d1baedbb90759a59362ea16caf8266d796)) diff --git a/README.md b/README.md index 083fb75..86366e0 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ linting, testing, and releasing. ### Build Workflow The [build](./.github/workflows/build.yml) workflow handles integration tasks. This workflow consists of two jobs, `Git` -and `Node`, that run in parallel. +and `Node`, that run in parallel. This workflow is triggered on a push to a branch. #### Git @@ -168,6 +168,8 @@ This job automates `Node.js` specific tasks. ### Release Workflow The [release](./.github/workflows/release.yml) workflow handles release tasks. This workflow consists of one job, `npm`. +This workflow is triggered manually from +the [GitHub Actions UI](https://github.com/J-R-Oliver/gl-code-quality-openapi-validator/actions). #### npm diff --git a/package-lock.json b/package-lock.json index a61a142..f2c2d42 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "gl-code-quality-openapi-validator", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "gl-code-quality-openapi-validator", - "version": "1.0.0", + "version": "1.0.1", "license": "Unlicense", "dependencies": { "commander": "^9.3.0" diff --git a/package.json b/package.json index ae8e3bd..df38502 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gl-code-quality-openapi-validator", - "version": "1.0.0", + "version": "1.0.1", "description": "GitLab Code Quality generator for IBM's OpenAPI Validator.", "main": "bin/index.js", "bin": {