diff --git a/.github/workflows/integration-deployment.yml b/.github/workflows/integration-deployment.yml index 2cf401b..ea3ce63 100644 --- a/.github/workflows/integration-deployment.yml +++ b/.github/workflows/integration-deployment.yml @@ -11,20 +11,16 @@ jobs: steps: - name: Get integration name id: get-integration-name - uses: actions/github-script@0.9.0 - with: - script: | - const repositoryName = context.payload.repository.name - const integrationName = repositoryName.replace("graph-", "") - core.setOutput('integrationName', integrationName) + shell: bash + run: | + NAME=${{ github.event.repository.name }} + echo "integrationName=${NAME#graph-}" >> $GITHUB_OUTPUT - name: Get version number id: get-version-number - uses: actions/github-script@0.9.0 - with: - script: | - const tagName = context.payload.release.tag_name - const versionNumber = tagName.replace("v", "") - core.setOutput('versionNumber', versionNumber) + shell: bash + run: | + TAG=${{ github.event.release.tag_name }} + echo "versionNumber=${TAG#v}" >> $GITHUB_OUTPUT - name: Bump integration deployment version uses: JupiterOne/integration-github-actions/create-integration-deployment@v1.2.2 with: diff --git a/.prettierignore b/.prettierignore index 5f4420f..6c48b83 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,3 +2,4 @@ dist coverage/ .j1-integration .j1-integration-cache +CHANGELOG.md \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 09b8aeb..25d1751 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,3 @@ -# Changelog - -All notable changes to this project will be documented in this file. - -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to -[Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -## [Unreleased] - ## 4.4.4 - 2023-05-15 ## Added diff --git a/package.json b/package.json index dd2c743..b29a0b8 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,6 @@ ], "onlyPublishWithReleaseLabel": true, "shipit": { - "noChangelog": true, "prerelease": false } }