From 9e513d2d8a191d5c865868288d4047971c623aff Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Mon, 19 Oct 2020 15:36:49 +1100 Subject: [PATCH] chore: GH action set-output must only be in one line --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3b3bb47b9..5c562e3ec 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -2,7 +2,7 @@ name: Release workflow on: release: - types: [created, published, edited] + types: [created, published] jobs: build-release: @@ -34,7 +34,7 @@ jobs: run: Remove-Item 'native\target' -Recurse -Force - run: npm run package - id: set_package_info - run: echo "::set-output name=packageJson::$(npx node-pre-gyp reveal)" + run: echo "::set-output name=packageJson::$(node ./scripts/native-lib-details.js)" - name: Upload Release Assets id: upload-release-asset uses: actions/upload-release-asset@v1