Skip to content

Commit b971ce0

Browse files
committed
removed sha based name
1 parent 2aad3ea commit b971ce0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ jobs:
2525
- name: Pack extension
2626
run: |
2727
google-chrome --pack-extension=ChromeExtension --pack-extension-key=key.pem
28-
mv ChromeExtension.crx LinkedInAI${{ steps.extract_version.outputs.version }}-${{ github.sha }}.crx
28+
mv ChromeExtension.crx LinkedInAI${{ steps.extract_version.outputs.version }}.crx
2929
3030
- name: Create Release
3131
id: create_release
3232
uses: actions/create-release@v1
3333
env:
3434
GITHUB_TOKEN: ${{ secrets.PAT }} # use the PAT instead of the GITHUB_TOKEN
3535
with:
36-
tag_name: release-${{ github.sha }} # prepend 'release-' to the SHA
37-
release_name: Release ${{ github.sha }}
36+
tag_name: release-${{ steps.extract_version.outputs.version }} # use the version as the tag
37+
release_name: Release ${{ steps.extract_version.outputs.version }} # use the version as the release name
3838
draft: false
3939
prerelease: false
4040

@@ -45,6 +45,6 @@ jobs:
4545
GITHUB_TOKEN: ${{ secrets.PAT }} # use the PAT instead of the GITHUB_TOKEN
4646
with:
4747
upload_url: ${{ steps.create_release.outputs.upload_url }} # from the step above
48-
asset_path: ./LinkedInAI${{ steps.extract_version.outputs.version }}-${{ github.sha }}.crx
49-
asset_name: LinkedInAI${{ steps.extract_version.outputs.version }}-${{ github.sha }}.crx
48+
asset_path: ./LinkedInAI${{ steps.extract_version.outputs.version }}.crx
49+
asset_name: LinkedInAI${{ steps.extract_version.outputs.version }}.crx
5050
asset_content_type: application/x-chrome-extension

0 commit comments

Comments
 (0)