mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
ci(lua): ugly directories fix, docs on todos
This commit is contained in:
parent
49aec9e70b
commit
a17c0e0ba5
2 changed files with 9 additions and 1 deletions
2
.github/workflows/java.yml
vendored
2
.github/workflows/java.yml
vendored
|
@ -37,3 +37,5 @@ jobs:
|
|||
with:
|
||||
name: codemp-java-${{ matrix.platform.target }}
|
||||
path: dist/java/build/libs
|
||||
|
||||
# TODO add a publish step to maven central
|
||||
|
|
8
.github/workflows/lua.yml
vendored
8
.github/workflows/lua.yml
vendored
|
@ -63,6 +63,7 @@ jobs:
|
|||
# name: codemp-lua-${{ matrix.platform.target }}
|
||||
# path: target/release/${{ matrix.platform.filename }}
|
||||
|
||||
# TODO this just copies files on our server, maybe publish on luarocks? maybe do it properly with versions
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [build]
|
||||
|
@ -74,4 +75,9 @@ jobs:
|
|||
with:
|
||||
pattern: codemp-lua-*
|
||||
- run: tree
|
||||
- run: scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null * dev@codemp.dev:/srv/http/codemp/files/releases/lua/
|
||||
# TODO ugly fix to deal with folders on this side...
|
||||
- name: copy files on remote
|
||||
run: |
|
||||
for DIR in $(ls); do
|
||||
scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null $DIR/* dev@codemp.dev:/srv/http/codemp/files/releases/lua/
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue