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
|
--action-cache-path=.github/cache/act/actions
|
||||||
--cache-server-path=.github/cache/act/cache
|
--cache-server-path=.github/cache/act/cache
|
||||||
--artifact-server-path=.github/cache/act/artifacts
|
--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 self-hosted=ghcr.io/catthehacker/ubuntu:act-latest
|
||||||
--platform ubuntu-latest=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
|
--platform ubuntu-22.04=ghcr.io/catthehacker/ubuntu:act-22.04
|
||||||
|
|
|
||||||
21
Makefile
21
Makefile
|
|
@ -1,11 +1,24 @@
|
||||||
apply:
|
apply:
|
||||||
ls -1 ../ | xargs \
|
ls -1 ../docker | xargs \
|
||||||
-I {} \
|
-I {} \
|
||||||
rsync \
|
rsync \
|
||||||
-ar \
|
-arv \
|
||||||
|
--no-links \
|
||||||
--exclude='.git' \
|
--exclude='.git' \
|
||||||
--exclude='Makefile' \
|
--exclude='Makefile' \
|
||||||
--exclude='.gitignore' \
|
--exclude='.gitignore' \
|
||||||
--exclude='.github/cache' \
|
--exclude='.github/cache' \
|
||||||
. ../{}/
|
--exclude='.trunk/plugins' \
|
||||||
rm ../*/LICENSE.md || true
|
. ../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