add license and permissions.md file to export files
This commit is contained in:
parent
4e974ab7c3
commit
9870e52666
1 changed files with 9 additions and 3 deletions
|
@ -59,21 +59,27 @@ jobs:
|
||||||
- name: Copy export files
|
- name: Copy export files
|
||||||
run: |
|
run: |
|
||||||
# ATLauncher
|
# ATLauncher
|
||||||
mkdir -vp /export/atlauncher/.minecraft
|
mkdir -vp /export/atlauncher/.minecraft/meta
|
||||||
cp -vrT ./build/atlauncher /export/atlauncher
|
cp -vrT ./build/atlauncher /export/atlauncher
|
||||||
cp -vp ./unsup.ini /export/atlauncher/.minecraft/
|
cp -vp ./unsup.ini /export/atlauncher/.minecraft/
|
||||||
wget -O /export/atlauncher/.minecraft/galacticfactory-updater.jar https://git.sleeping.town/attachments/7edb17a2-e43f-4789-8bae-6140cbe98311
|
wget -O /export/atlauncher/.minecraft/galacticfactory-updater.jar https://git.sleeping.town/attachments/7edb17a2-e43f-4789-8bae-6140cbe98311
|
||||||
|
cp -vp ./LICENSE /export/atlauncher/.minecraft/meta/
|
||||||
|
cp -vp ./PERMISSIONS.md /export/atlauncher/.minecraft/meta/
|
||||||
|
|
||||||
# Prism Launcher
|
# Prism Launcher
|
||||||
mkdir -vp /export/prism/.minecraft
|
mkdir -vp /export/prism/.minecraft/meta
|
||||||
cp -vrT ./build/prism /export/prism
|
cp -vrT ./build/prism /export/prism
|
||||||
cp -v ./unsup.ini /export/prism/.minecraft/
|
cp -v ./unsup.ini /export/prism/.minecraft/
|
||||||
|
cp -v ./LICENSE /export/prism/.minecraft/meta/
|
||||||
|
cp -v ./PERMISSIONS.md /export/prism/.minecraft/meta/
|
||||||
|
|
||||||
# Modrinth
|
# Modrinth
|
||||||
mkdir -vp /export/modrinth/.minecraft/overrides
|
mkdir -vp /export/modrinth/.minecraft/overrides/meta
|
||||||
cp -v ./build/modrinth.index.json /export/modrinth/
|
cp -v ./build/modrinth.index.json /export/modrinth/
|
||||||
cp -v /export/atlauncher/.minecraft/galacticfactory-updater.jar /export/modrinth/.minecraft/overrides/
|
cp -v /export/atlauncher/.minecraft/galacticfactory-updater.jar /export/modrinth/.minecraft/overrides/
|
||||||
cp -v ./unsup.ini /export/modrinth/.minecraft/overrides/
|
cp -v ./unsup.ini /export/modrinth/.minecraft/overrides/
|
||||||
|
cp -v ./LICENSE /export/modrinth/.minecraft/overrides/meta/
|
||||||
|
cp -v ./PERMISSIONS.md /export/modrinth/.minecraft/overrides/meta/
|
||||||
|
|
||||||
- name: Upload ATLauncher export artifact
|
- name: Upload ATLauncher export artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
|
|
Reference in a new issue