v0.2.0: exe 자동 업데이트 + self-dependency 버그 수정 #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: Build & Release | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build release | |
| run: cargo build --release | |
| - name: Rename exe | |
| run: | | |
| copy target\release\dartlab-desktop.exe DartLab.exe | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: DartLab.exe | |
| generate_release_notes: true |