diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6528f15d..fbd7116e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,6 +59,12 @@ jobs: name: ED64 path: ./output/OS64.v64 + - name: Upload artifact (ED64P version) + uses: actions/upload-artifact@v3 + with: + name: ED64P + path: ./output/OS64P.v64 + - name: Upload artifact (SC64 version) uses: actions/upload-artifact@v3 with: diff --git a/Makefile b/Makefile index 9e30b4d7..3c0d9063 100644 --- a/Makefile +++ b/Makefile @@ -94,6 +94,10 @@ ed64: $(BUILD_DIR)/$(PROJECT_NAME)_stripped.n64 $(shell cp $< $(OUTPUT_DIR)/OS64.v64) .PHONY: ed64 +ed64-clone: $(BUILD_DIR)/$(PROJECT_NAME)_stripped.n64 + $(shell cp $< $(OUTPUT_DIR)/OS64P.v64) +.PHONY: ed64-clone + sc64: $(BUILD_DIR)/$(PROJECT_NAME)_stripped.n64 $(shell cp $< $(OUTPUT_DIR)/sc64menu.n64) .PHONY: sc64