aboutsummaryrefslogtreecommitdiff
path: root/back-end
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-08-08 21:45:52 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-08-08 21:45:52 -0400
commit61b45052e0eb46462de009a7337170ba35082828 (patch)
treed106a7019b8c5236f0f327b78d2aa110098b0a64 /back-end
parent166df63300269171e0913fd0e3989df6228046c0 (diff)
Squashed commit of the following:HEADmaster
commit 17ae316ab141a8a81bb718b388e90eb818ef5ea3 Author: vnugent <public@vaughnnugent.com> Date: Thu Aug 8 21:43:51 2024 -0400 fix(shared): missing build command for libs commit 632e895d51317347b2f2bbb1b270776f773499b5 Author: vnugent <public@vaughnnugent.com> Date: Wed Jul 24 01:05:50 2024 -0400 remove verbose logging commit a41fec242700728eebb55625994e57783e651b0f Merge: dedd153 166df63 Author: vnugent <public@vaughnnugent.com> Date: Tue Jul 23 20:00:37 2024 -0400 Merge branch 'master' into develop commit dedd153bbacf9608709519975d3e71c235bc737f Author: vnugent <public@vaughnnugent.com> Date: Tue Jul 23 19:56:16 2024 -0400 reset login status token temporary fix commit 073e472c0dd73d9a20dd1ba27a9e182b029725b8 Author: vnugent <public@vaughnnugent.com> Date: Tue Jul 23 19:32:27 2024 -0400 chore: Package updates & compose build config commit 1b7964cad139e5c4d0249c10fac0dd6fca386ec7 Merge: 8ed4663 f77ff50 Author: vnugent <public@vaughnnugent.com> Date: Fri Jun 7 15:46:25 2024 -0400 Merge branch 'master' into develop commit 8ed4663e539d9c2ea58aaad02a1fc2896956f6b6 Author: vnugent <public@vaughnnugent.com> Date: Fri Jun 7 15:43:48 2024 -0400 fix: invalid chars in status cookie name commit 9d1df65d99732a68b4fe96dcc75273442cbd322f Author: vnugent <public@vaughnnugent.com> Date: Thu Jun 6 21:31:30 2024 -0400 fix: Some container fixes and compatability commit 5ecd6b39cccdc9500540b10685605b5fcba61f69 Author: vnugent <public@vaughnnugent.com> Date: Thu Jun 6 17:19:48 2024 -0400 Update and expose storage config for container commit 3a62bafd210a2e00d23d3df773e47011e09eba6e Author: vnugent <public@vaughnnugent.com> Date: Thu Jun 6 16:18:36 2024 -0400 ci: build admin lib before building front-end commit 35920ad6c8596fc14bcfed66303511e8c249be8d Author: vnugent <public@vaughnnugent.com> Date: Thu Jun 6 15:56:36 2024 -0400 ci: Local vite config, force set lib versions commit 3c228b3cc5172fae398af8de72b64bd780ace20c Author: vnugent <public@vaughnnugent.com> Date: Wed Jun 5 19:55:39 2024 -0400 ci: Update packages and add container build commit 21d2719701f851d4a555c363b141f289f14a5192 Author: vnugent <public@vaughnnugent.com> Date: Wed Jun 5 15:58:07 2024 -0400 fix: #1 new channel page when hitting new button commit eefba88ac4e2c70517aa71c79ed94c346f9de554 Author: vnugent <public@vaughnnugent.com> Date: Wed Jun 5 15:26:15 2024 -0400 chore: Package updates commit 9eed4022a79f2cba139c9f8a359bfc8c1f9c31c5 Author: vnugent <public@vaughnnugent.com> Date: Wed Jun 5 14:44:08 2024 -0400 ci: Stage blocking changes
Diffstat (limited to 'back-end')
-rw-r--r--back-end/Taskfile.yaml10
1 files changed, 5 insertions, 5 deletions
diff --git a/back-end/Taskfile.yaml b/back-end/Taskfile.yaml
index 07bcaf6..ed2e072 100644
--- a/back-end/Taskfile.yaml
+++ b/back-end/Taskfile.yaml
@@ -12,7 +12,7 @@ tasks:
dir: '{{.USER_WORKING_DIR}}'
cmds:
#build project
- - dotnet publish -c release {{.DOTNET_BUILD_FLAGS}}
+ - dotnet publish -c release {{.DOTNET_BUILD_FLAGS}}
#postbuild to package artifaces into the archives for upload
postbuild_success:
@@ -29,14 +29,14 @@ tasks:
- powershell -Command "cp '{{.MODULE_DIR}}/LICENSE.txt' -Destination '{{.OUT_DIR}}/LICENSE.txt'"
#tar the plugin output and put it in the bin dir
- - cd {{.OUT_DIR}} && tar -czvf '{{.USER_WORKING_DIR}}/bin/release.tgz' .
+ - cd {{.OUT_DIR}} && tar -czf '{{.USER_WORKING_DIR}}/bin/release.tgz' .
packsource:
dir: '{{.USER_WORKING_DIR}}'
internal: true
cmds:
#copy source code to target
- - powershell -Command "Get-ChildItem -Include *.cs,*.csproj -Recurse | Where { \$_.FullName -notlike '*\obj\*' -and \$_.FullName -notlike '*\bin\*' } | Resolve-Path -Relative | tar --files-from - -cvzf 'bin/src.tgz'"
+ - powershell -Command "Get-ChildItem -Include *.cs,*.csproj -Recurse | Where { \$_.FullName -notlike '*\obj\*' -and \$_.FullName -notlike '*\bin\*' } | Resolve-Path -Relative | tar --files-from - -czf 'bin/src.tgz'"
#clean hook
clean:
@@ -44,5 +44,5 @@ tasks:
ignore_error: true
cmds:
- dotnet clean -c release
- - powershell -Command "Remove-Item -Recurse bin"
- - powershell -Command "Remove-Item -Recurse obj" \ No newline at end of file
+ - for: [ bin/, obj/ ]
+ cmd: powershell -Command "Remove-Item -Recurse {{.ITEM}}"