aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-10-24 13:48:25 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-10-24 13:48:25 -0400
commitf4ebe4cce88100e60896d210666829e3dcd15ded (patch)
treec203ef179bee499f90aea5de04da37b3b13ae75a
parentb618510054429744bff11bb7c02bbc430cf949ce (diff)
add missing builds to module taskfile
-rw-r--r--Module.Taskfile.yaml6
1 files changed, 5 insertions, 1 deletions
diff --git a/Module.Taskfile.yaml b/Module.Taskfile.yaml
index 10a5410..e2865c0 100644
--- a/Module.Taskfile.yaml
+++ b/Module.Taskfile.yaml
@@ -46,6 +46,8 @@ tasks:
- dotnet publish -c debug -r win-x64 {{.BUILD_FLAGS}} {{.MS_ARGS}}
- dotnet publish -c debug -r linux-x64 {{.BUILD_FLAGS}} {{.MS_ARGS}}
- dotnet publish -c debug -r osx-x64 {{.BUILD_FLAGS}} {{.MS_ARGS}}
+ - dotnet publish -c debug -r linux-arm {{.BUILD_FLAGS}} {{.MS_ARGS}}
+ - dotnet publish -c debug -r linux-arm64 {{.BUILD_FLAGS}} {{.MS_ARGS}}
build_release:
dir: '{{.USER_WORKING_DIR}}'
@@ -53,4 +55,6 @@ tasks:
cmds:
- dotnet publish -c release -r win-x64 {{.BUILD_FLAGS}} {{.MS_ARGS}}
- dotnet publish -c release -r linux-x64 {{.BUILD_FLAGS}} {{.MS_ARGS}}
- - dotnet publish -c release -r osx-x64 {{.BUILD_FLAGS}} {{.MS_ARGS}} \ No newline at end of file
+ - dotnet publish -c release -r osx-x64 {{.BUILD_FLAGS}} {{.MS_ARGS}}
+ - dotnet publish -c release -r linux-arm {{.BUILD_FLAGS}} {{.MS_ARGS}}
+ - dotnet publish -c release -r linux-arm64 {{.BUILD_FLAGS}} {{.MS_ARGS}} \ No newline at end of file