From: Evert Timberg Date: Thu, 15 Oct 2020 21:00:28 +0000 (-0400) Subject: Fix double env (#7892) X-Git-Tag: v3.0.0-beta.4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64b45294861ca19c0713dec9f6854e71747571b0;p=thirdparty%2FChart.js.git Fix double env (#7892) --- diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index 29328021a..f674ecd4f 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -59,17 +59,15 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GH_AUTH_TOKEN }} GH_AUTH_EMAIL: ${{ secrets.GH_AUTH_EMAIL }} - env: VERSION: ${{ github.event.release.tag_name }} - name: Upload NPM package file id: upload-npm-package-file uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + VERSION: ${{ github.event.release.tag_name }} with: upload_url: ${{ github.event.release.upload_url }} asset_path: chart.js-$VERSION.tgz asset_name: chart.js-$VERSION.tgz asset_content_type: application/gzip - env: - VERSION: ${{ github.event.release.tag_name }}