Skip to content

Commit

Permalink
Update WORKSPACE env var
Browse files Browse the repository at this point in the history
  • Loading branch information
hansbonini committed Jul 4, 2024
1 parent 99d2252 commit cf94367
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
mkdir build
echo "" > 'build\Altered Beast (US).bin'
echo "" > 'build\Altered Beast (US).txt'
make NAME="Altered Beast" VERSION="US" ASM68K_SWITCHES="//m //p //k" build
make WORKSPACE="${{ github.workspace }}" NAME="Altered Beast" VERSION="US" ASM68K_SWITCHES="//m //p //k" build
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
VERSION ?= US
NAME ?= Altered Beast
ROM_US ?= Altered Beast (USA, Europe).md
WORKFLOW :=
WORKSPACE := .

# Directories
ASM_DIR := $(WORKFLOW)/asm
BUILD_DIR := $(WORKFLOW)/build
GFX_DIR := $(WORKFLOW)/gfx
ROM_DIR := $(WORKFLOW)/rom
TOOLS_DIR := $(WORKFLOW)/tools
ASM_DIR := $(WORKSPACE)/asm
BUILD_DIR := $(WORKSPACE)/build
GFX_DIR := $(WORKSPACE)/gfx
ROM_DIR := $(WORKSPACE)/rom
TOOLS_DIR := $(WORKSPACE)/tools

# Tooling
GO := go run
Expand Down

0 comments on commit cf94367

Please sign in to comment.