Skip to content

Commit

Permalink
action: Fix generate release for x64
Browse files Browse the repository at this point in the history
Fix generate release for x64 by appending python_version_micro.

Also the same as previous change, replacing xcopy with cp during output
preparation.
  • Loading branch information
alive4ever committed Feb 15, 2025
1 parent ebcca86 commit 32aab81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/generate_release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Generate release for youtube-local (oldwin)
name: Generate release for youtube-local
run-name: ${{ github.actor }} is creating release for youtube-local
on:
push:
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
shell: bash
run: |
cd "${{ github.workspace }}"
python ./generate_release.py 3.13
python ./generate_release.py 3.13.2
- name: Testing runtime
id: testing-runtime
shell: bash
Expand All @@ -46,7 +46,7 @@ jobs:
run: |
cd "${{ github.workspace }}"
mkdir -p output
xcopy youtube-local*zip ./output/
cp -v youtube-local*zip ./output/
- name: Uploading build artifacts
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 32aab81

Please sign in to comment.