Update readme.md #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish EXE to GitHub Packages | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
upload: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Compress EXE | ||
run: Compress-Archive -Path path\to\your_file.exe -DestinationPath app.zip | ||
- name: Upload to GitHub Packages | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: my-app | ||
path: app.zip | ||
git config user.name "nova360-ai" | ||
git config user.email "[email protected]" |