Initial seperation of containers
This commit is contained in:
parent
feb8997eac
commit
f1042386ee
2 changed files with 18 additions and 5 deletions
2
.actrc
2
.actrc
|
@ -2,7 +2,7 @@
|
|||
--action-cache-path=.github/cache/act/actions
|
||||
--cache-server-path=.github/cache/act/cache
|
||||
--artifact-server-path=.github/cache/act/artifacts
|
||||
--artifact-server-port=34564
|
||||
--artifact-server-port=33999
|
||||
--platform self-hosted=ghcr.io/catthehacker/ubuntu:act-latest
|
||||
--platform ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest
|
||||
--platform ubuntu-22.04=ghcr.io/catthehacker/ubuntu:act-22.04
|
||||
|
|
21
Makefile
21
Makefile
|
@ -1,11 +1,24 @@
|
|||
apply:
|
||||
ls -1 ../ | xargs \
|
||||
ls -1 ../docker | xargs \
|
||||
-I {} \
|
||||
rsync \
|
||||
-ar \
|
||||
-arv \
|
||||
--no-links \
|
||||
--exclude='.git' \
|
||||
--exclude='Makefile' \
|
||||
--exclude='.gitignore' \
|
||||
--exclude='.github/cache' \
|
||||
. ../{}/
|
||||
rm ../*/LICENSE.md || true
|
||||
--exclude='.trunk/plugins' \
|
||||
. ../docker/{}/
|
||||
ls -1 ../php | xargs \
|
||||
-I {} \
|
||||
rsync \
|
||||
-arv \
|
||||
--no-links \
|
||||
--exclude='.git' \
|
||||
--exclude='Makefile' \
|
||||
--exclude='.gitignore' \
|
||||
--exclude='.github/cache' \
|
||||
--exclude='.trunk/plugins' \
|
||||
. ../php/{}/
|
||||
rm ../docker/*/LICENSE* ../php/*/LICENSE* || true
|
||||
|
|
Loading…
Reference in a new issue