Compare commits

..

No commits in common. "main" and "v1.0.1" have entirely different histories.
main ... v1.0.1

1 changed files with 4 additions and 6 deletions

View File

@ -34,19 +34,18 @@ jobs:
- name: Build executable
run: |
pyinstaller icon_extractor.spec --clean
mv dist/EU-Icon-Extractor.exe dist/EU-Icon-Extractor-Windows.exe
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: EU-Icon-Extractor-Windows
path: dist/EU-Icon-Extractor-Windows.exe
path: dist/EU-Icon-Extractor.exe
- name: Create Release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v1
with:
files: dist/EU-Icon-Extractor-Windows.exe
files: dist/EU-Icon-Extractor.exe
draft: false
prerelease: false
env:
@ -77,19 +76,18 @@ jobs:
- name: Build executable
run: |
pyinstaller icon_extractor.spec --clean
mv dist/EU-Icon-Extractor dist/EU-Icon-Extractor-Linux
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: EU-Icon-Extractor-Linux
path: dist/EU-Icon-Extractor-Linux
path: dist/EU-Icon-Extractor
- name: Create Release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v1
with:
files: dist/EU-Icon-Extractor-Linux
files: dist/EU-Icon-Extractor
draft: false
prerelease: false
env: