Skip to content

Commit

Permalink
update upload asset
Browse files Browse the repository at this point in the history
  • Loading branch information
mmdbalkhi committed Mar 8, 2023
1 parent fec0621 commit a1e0d59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ jobs:
- name: Build image
run: mkarchiso -v iso/
- name: Upload iso to the release
run: python tools/upload_assest.py
run: python tools/upload_asset.py

2 changes: 1 addition & 1 deletion tools/upload_asset.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def _compute_sha256(file_name):


_path = list(Path().cwd().glob("out/*.iso"))[0]
path = _path.posix_path()
path = _path.as_posix()

file_name = _path.name

Expand Down

0 comments on commit a1e0d59

Please sign in to comment.