add missing $ (#412) [version updates] (#413)

Co-authored-by: Jacob Bolda <me@jacobbolda.com>
This commit is contained in:
github-actions[bot] 2020-02-10 00:32:40 +01:00 committed by GitHub
parent 1f5a299719
commit f729f65537
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ jobs:
run: echo ::set-env name=PUBLISHED_VERSION::$(cargo search ${{ matrix.package.registryName }} --limit 1 | sed -nE 's/^[^"]*"//; s/".*//1p' -)
- name: cargo login
if: env.PACKAGE_VERSION != env.PUBLISHED_VERSION
run: cargo login {{ secrets.crate_token }}
run: cargo login ${{ secrets.crate_token }}
- name: cargo package
if: env.PACKAGE_VERSION != env.PUBLISHED_VERSION
working-directory: ${{ matrix.package.path }}

View File

@ -50,7 +50,7 @@ jobs:
working-directory: ${{ matrix.package.path }}
run: |
echo "# NPM Audit Results" | tee -a ${{runner.workspace }}/notes.md
npm audit 2>&1 | tee -a ${{runner.workspace }}/notes.md
yarn audit 2>&1 | tee -a ${{runner.workspace }}/notes.md
- name: Publish ${{ matrix.package.name }}
if: env.PACKAGE_VERSION != env.PUBLISHED_VERSION
working-directory: ${{ matrix.package.path }}
@ -78,7 +78,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_npm_release.outputs.upload_url }}
upload_url: ${{ steps.create_npm_release.outputs.upload_url }}
asset_path: ./${{ matrix.package.path }}/${{ matrix.package.registryName }}-${{ env.PACKAGE_VERSION }}.tgz
asset_name: ${{ matrix.package.registryName }}-${{ env.PACKAGE_VERSION }}.tgz
asset_content_type: application/x-gtar