fix: use wildcard path in DxWnd config for portable proxy support #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*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Create release zip | |
| run: | | |
| cd release | |
| zip -9 "../AltEdit2-Fixed-${{ github.ref_name }}.zip" \ | |
| 9xheap.dll ae2.exe dxwnd.asi dxwnd.dll dxwnd.dxw winmm.dll | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: "AltEditor II Fixed ${{ github.ref_name }}" | |
| body_path: CHANGELOG.md | |
| files: AltEdit2-Fixed-*.zip | |
| generate_release_notes: false |