[delete] fichier pas nécaissaire #3
Workflow file for this run
This file contains hidden or 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: Create Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Create ZIP | |
| run: | | |
| Compress-Archive -Path * -DestinationPath music-overlay-server.zip | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: music-overlay-server.zip | |
| body: | | |
| ## Music Overlay Server | |
| Installation automatique pour Windows 11 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |