Skip to content

Commit f701b90

Browse files
committed
updated workflow to use new naming
1 parent f446df0 commit f701b90

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/gochat_v1.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
- name: Publish server
2929
uses: actions/upload-artifact@v4
3030
with:
31-
name: gochat-server_windows-amd64
32-
path: build/gochat-server.exe
31+
name: gochatd_windows-amd64
32+
path: build/gochatd.exe
3333
- name: Publish client
3434
uses: actions/upload-artifact@v4
3535
with:
36-
name: gochat-client_windows-amd64
37-
path: build/gochat-client.exe
36+
name: gochat_windows-amd64
37+
path: build/gochat.exe
3838
linux:
3939
runs-on: ubuntu-latest
4040
steps:
@@ -49,13 +49,13 @@ jobs:
4949
- name: Publish server
5050
uses: actions/upload-artifact@v4
5151
with:
52-
name: gochat-server_linux-amd64
53-
path: build/gochat-server
52+
name: gochatd_linux-amd64
53+
path: build/gochatd
5454
- name: Publish client
5555
uses: actions/upload-artifact@v4
5656
with:
57-
name: gochat-client_linux-amd64
58-
path: build/gochat-client
57+
name: gochat_linux-amd64
58+
path: build/gochat
5959
release:
6060
runs-on: ubuntu-latest
6161
needs: [windows, linux]
@@ -78,7 +78,7 @@ jobs:
7878
preserve_order: true
7979
make_latest: true
8080
files: |
81-
gochat-client_windows-amd64.tar.gz
82-
gochat-client_linux-amd64.tar.gz
83-
gochat-server_windows-amd64.tar.gz
84-
gochat-server_linux-amd64.tar.gz
81+
gochat_windows-amd64.tar.gz
82+
gochat_linux-amd64.tar.gz
83+
gochatd_windows-amd64.tar.gz
84+
gochatd_linux-amd64.tar.gz

0 commit comments

Comments
 (0)