Skip to content

Commit

Permalink
Fix download artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed Oct 28, 2024
1 parent 3e9cdc4 commit 8d87ecf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,6 @@ jobs:
name: Python Wheel
path: dist

- name: Download Artifacts
uses: actions/download-artifact@v4
with:
name: ${{ matrix.python }}-${{ matrix.arch }}-${{ matrix.platform }}.tar.xz
path: release-artifacts/

- name: Create Release
id: create_release
Expand Down Expand Up @@ -147,6 +142,11 @@ jobs:
arch: arm64
python: 3.13.0
steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
name: ${{ matrix.python }}-${{ matrix.arch }}-${{ matrix.platform }}.tar.xz
path: release-artifacts/
- name: Upload ${{ matrix.python }}-${{ matrix.arch }}-${{ matrix.platform }}.tar.xz
id: upload-python-build-assets
uses: actions/upload-release-asset@v1
Expand Down
2 changes: 1 addition & 1 deletion relenv/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import time

# relenv package version
__version__ = "0.17.400000"
__version__ = "0.17.400001"

MODULE_DIR = pathlib.Path(__file__).resolve().parent

Expand Down

0 comments on commit 8d87ecf

Please sign in to comment.