From 3f216e211d6b640c35729943e9bdfd5b28bf1fef Mon Sep 17 00:00:00 2001 From: Anaminus Date: Mon, 15 Feb 2021 14:09:52 -0600 Subject: [PATCH] Fix build location and executable name. --- .github/workflows/release.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0632f421..518081d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,10 +6,10 @@ on: - 'v*.*.*' env: - PROJECT : 'rbxmk' # Name of project/executable. - PROGRAM : '.' # Location of program. - GOVERSION : 1.15 # Version of Go to compile with. - DIST : './dist' # Scratch directory for building executables. + PROJECT : 'rbxmk' # Name of project/executable. + PROGRAM : './rbxmk' # Location of program. + GOVERSION : 1.15 # Version of Go to compile with. + DIST : './dist' # Scratch directory for building executables. jobs: @@ -35,11 +35,11 @@ jobs: strategy: matrix: include: - - {os: 'windows' , arch: 'amd64' , output: './dist/playground.exe'} - - {os: 'windows' , arch: '386' , output: './dist/playground.exe'} - - {os: 'darwin' , arch: 'amd64' , output: './dist/playground'} - - {os: 'linux' , arch: '386' , output: './dist/playground'} - - {os: 'linux' , arch: 'amd64' , output: './dist/playground'} + - {os: 'windows' , arch: 'amd64' , output: './dist/rbxmk.exe'} + - {os: 'windows' , arch: '386' , output: './dist/rbxmk.exe'} + - {os: 'darwin' , arch: 'amd64' , output: './dist/rbxmk'} + - {os: 'linux' , arch: '386' , output: './dist/rbxmk'} + - {os: 'linux' , arch: 'amd64' , output: './dist/rbxmk'} steps: - name: Checkout code uses: actions/checkout@v2