Skip to content

Commit

Permalink
Fix build location and executable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Anaminus committed Feb 15, 2021
1 parent c48d4f1 commit 3f216e2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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
Expand Down

0 comments on commit 3f216e2

Please sign in to comment.