From d214b325d1f828f1838ce0df7050f9c406875b2b Mon Sep 17 00:00:00 2001 From: kovacsv Date: Fri, 27 May 2022 16:53:09 +0200 Subject: [PATCH] Fix action. --- .github/workflows/release_publish.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release_publish.yml b/.github/workflows/release_publish.yml index 607135f..8c44da0 100644 --- a/.github/workflows/release_publish.yml +++ b/.github/workflows/release_publish.yml @@ -12,16 +12,16 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '16.x' - registry-url: 'https://registry.npmjs.org' - - run: npm install - - run: npm run create_dist - - uses: ncipollo/release-action@v1 - with: - artifacts: "build\final\package\*" - bodyFile: ".github/workflows/release_template.md" - draft: true - token: ${{ secrets.GITHUB_TOKEN }} + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '16.x' + registry-url: 'https://registry.npmjs.org' + - run: npm install + - run: npm run create_dist + - uses: ncipollo/release-action@v1 + with: + artifacts: "build\final\package\*" + bodyFile: ".github/workflows/release_template.md" + draft: true + token: ${{ secrets.GITHUB_TOKEN }}