From 7ea688ecccbf55dbd91631858057450d99cad22d Mon Sep 17 00:00:00 2001 From: Stuart Leeks Date: Wed, 8 Jun 2022 14:24:03 +0000 Subject: [PATCH] Fix artifact name in release job --- .github/workflows/ci_common.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_common.yml b/.github/workflows/ci_common.yml index ee8930e5..a984dfb5 100644 --- a/.github/workflows/ci_common.yml +++ b/.github/workflows/ci_common.yml @@ -270,8 +270,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - asset_path: ./output/devcontainers.devcontainer-build-run-${{ needs.build.outputs.version }}.vsix - asset_name: devcontainers.devcontainer-build-run-${{ needs.build.outputs.version }}.vsix + asset_path: ./output/devcontainers.ci-${{ needs.build.outputs.version }}.vsix + asset_name: devcontainers.ci-${{ needs.build.outputs.version }}.vsix asset_content_type: application/zip - name: Publish AzDO Task