Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Cantersoft committed May 29, 2024
1 parent 7d82d70 commit 2e52e88
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Build executable
run: |
pyinstaller --onefile YTPMVE_UI.py
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: YTPMVE
path: ./dist/YTPMVE_UI.exe
Expand All @@ -34,7 +34,7 @@ jobs:
mkdir YTPMVE
Get-Content .\installfiles.txt | foreach { mv $_ .\YTPMVE}
Compress-Archive .\YTPMVE YTPMVE-$(((get-date).ToUniversalTime()).ToString("yyyyMMdd-HHmmss")).zip
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Dev-Release
path: ./YTPMVE*.zip
Expand All @@ -48,7 +48,7 @@ jobs:
steps:

- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: Dev-Release

Expand Down

0 comments on commit 2e52e88

Please sign in to comment.