Skip to content

Commit

Permalink
maint: fixing release name
Browse files Browse the repository at this point in the history
  • Loading branch information
kmilo9999 committed Nov 8, 2024
1 parent d737437 commit d33fec0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build and Upload Release Asset
on:
push:
tags:
- 'v*.*.*' # Trigger on version tags like v1.0.0
- 'v*.*.*'

jobs:
build-and-upload:
Expand All @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9' # Adjust based on your project's requirements
python-version: '3.9'

- name: Install `uv`
run: |
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
with:
name: napari-plugin-dist.zip # Name of the asset file as it appears in the release
name: jawroski-napari-plugin-dist.zip
release_id: ${{ steps.create_release.outputs.id }}
asset_path: dist/* # Path to the build output
asset_path: dist/*
asset_content_type: application/zip

0 comments on commit d33fec0

Please sign in to comment.