Skip to content

Commit d13787a

Browse files
committed
rename bin name
1 parent 7378acd commit d13787a

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -101,28 +101,28 @@ jobs:
101101
102102
- name: Pre-release (linux x86_64)
103103
if: matrix.os == 'ubuntu-latest'
104-
run: zip -r memory-match-game-x86_64-unknown-linux-gnu.zip memory-match-game
104+
run: zip -r gpui-memory-game-x86_64-unknown-linux-gnu.zip gpui-memory-game
105105
working-directory: target/release
106106

107107
- name: Pre-release (linux aarch64)
108108
if: matrix.os == 'ubuntu-24.04-arm'
109-
run: zip -r memory-match-game-aarch64-unknown-linux-gnu.zip memory-match-game
109+
run: zip -r gpui-memory-game-aarch64-unknown-linux-gnu.zip gpui-memory-game
110110
working-directory: target/release
111111

112112
- name: Pre-release (mac)
113113
if: matrix.os == 'macOS-13'
114-
run: zip -r memory-match-game-x86_64-apple-darwin.zip memory-match-game
114+
run: zip -r gpui-memory-game-x86_64-apple-darwin.zip gpui-memory-game
115115
working-directory: target/release
116116

117117
- name: Pre-release (aarch64-apple-darwin)
118118
if: matrix.os == 'macOS-latest'
119-
run: zip -r memory-match-game-aarch64-apple-darwin.zip memory-match-game
119+
run: zip -r gpui-memory-game-aarch64-apple-darwin.zip gpui-memory-game
120120
working-directory: target/release
121121

122122
- name: Pre-release (windows x86_64)
123123
if: matrix.os == 'windows-latest'
124124
run: |
125-
Compress-Archive -CompressionLevel Optimal -Force -Path target/release/memory-match-game.exe -DestinationPath target/release/memory-match-game-x86_64-pc-windows-msvc.zip
125+
Compress-Archive -CompressionLevel Optimal -Force -Path target/release/gpui-memory-game.exe -DestinationPath target/release/gpui-memory-game-x86_64-pc-windows-msvc.zip
126126
127127
- name: Release
128128
uses: softprops/action-gh-release@v1
@@ -133,10 +133,10 @@ jobs:
133133
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
134134
with:
135135
files: |
136-
target/release/memory-match-game-x86_64-pc-windows-msvc.zip
137-
target/release/memory-match-game-x86_64-unknown-linux-gnu.zip
138-
target/release/memory-match-game-x86_64-apple-darwin.zip
139-
target/release/memory-match-game-aarch64-apple-darwin.zip
140-
target/release/memory-match-game-aarch64-unknown-linux-gnu.zip
141-
target/release/memory-match-game_*.dmg
136+
target/release/gpui-memory-game-x86_64-pc-windows-msvc.zip
137+
target/release/gpui-memory-game-x86_64-unknown-linux-gnu.zip
138+
target/release/gpui-memory-game-x86_64-apple-darwin.zip
139+
target/release/gpui-memory-game-aarch64-apple-darwin.zip
140+
target/release/gpui-memory-game-aarch64-unknown-linux-gnu.zip
141+
target/release/gpui-memory-game_*.dmg
142142
draft: true

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ name = "gpui-memory-game"
7474
path = "src/main.rs"
7575

7676
[package.metadata.winres]
77-
OriginalFilename = "memory-match-game.exe"
77+
OriginalFilename = "gpui-memory-game.exe"
7878
LegalCopyright = "MIT."
79-
ProductName = "memory-match-game"
79+
ProductName = "gpui-memory-game"
8080
FileDescription = "Memory Match Game"
8181

8282
[package.metadata.packager]
83-
product-name = "memory-match-game"
84-
identifier = "com.justjavac.memory-match-game"
83+
product-name = "gpui-memory-game"
84+
identifier = "com.justjavac.gpui-memory-game"
8585
copyright = "Copyright (c) justjavac 2025. All rights reserved."
8686
category = "Game"
8787
icons = ["assets/icon-*.png"]

0 commit comments

Comments
 (0)