Skip to content

Commit

Permalink
renamed(app): Renamed app exe file
Browse files Browse the repository at this point in the history
  • Loading branch information
middaysan committed May 26, 2024
1 parent f57a65e commit b9191a6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:
run: go generate .\cmd\

- name: Build application
run: go build -ldflags="-H windowsgui -extldflags=-Wl,app.manifest" -o memory-cleaner-tray.exe .\cmd\
run: go build -ldflags="-H windowsgui -extldflags=-Wl,app.manifest" -o windows-ram-cleaner.exe .\cmd\

- name: Archive build
uses: actions/upload-artifact@v2
with:
name: memory-cleaner-tray
path: memory-cleaner-tray.exe
name: windows-ram-cleaner
path: windows-ram-cleaner.exe

release:
needs: build
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: memory-cleaner-tray
name: windows-ram-cleaner

- name: Create GitHub Release
id: create_release
Expand All @@ -69,6 +69,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: memory-cleaner-tray.exe
asset_name: memory-cleaner-tray.exe
asset_path: windows-ram-cleaner.exe
asset_name: windows-ram-cleaner.exe
asset_content_type: application/octet-stream

0 comments on commit b9191a6

Please sign in to comment.