[FIX] GitHub Actions - Загрузка файлов в релиз

This commit is contained in:
Andrew Molchanov 2021-09-03 16:23:51 +03:00 committed by GitHub
parent 438b62b3ca
commit fe994cdcca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,31 +52,40 @@ jobs:
if: startsWith(github.event.ref, 'refs/tags') if: startsWith(github.event.ref, 'refs/tags')
run: echo "LAUNCHER_VERSION=$(echo ${{ github.event.ref }} | awk -F\/ '{print $3}')" >> $GITHUB_ENV run: echo "LAUNCHER_VERSION=$(echo ${{ github.event.ref }} | awk -F\/ '{print $3}')" >> $GITHUB_ENV
- name: Prebuild release files
if: startsWith(github.event.ref, 'refs/tags')
run: |
cp modules/*_module/build/libs/*.jar artifacts/modules || true
cp modules/*_lmodule/build/libs/*.jar artifacts/lmodules || true
cp modules/*_swmodule/build/libs/*.jar artifacts/swmodules || true
cd artifacts
zip -9 LauncherBase.zip libraries.zip LaunchServer.jar
cd lmodules
zip -9 ../LauncherModules.zip *
cd ../modules
zip -9 ../LaunchServerModules.zip *
cd ../swmodules
zip -9 ../ServerWrapperModules.zip *
cd ..
- name: Create release - name: Create release
id: create_release id: create_release
uses: actions/create-release@v1 uses: softprops/action-gh-release@v1
if: startsWith(github.event.ref, 'refs/tags') if: startsWith(github.event.ref, 'refs/tags')
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Список настроек тута: https://github.com/softprops/action-gh-release#-customizing
# Можно сделать пуш описания релиза из файла
with: with:
tag_name: ${{ github.ref }}
release_name: GravitLauncher ${{ env.LAUNCHER_VERSION }} release_name: GravitLauncher ${{ env.LAUNCHER_VERSION }}
draft: false draft: false
prerelease: false prerelease: false
files: |
- name: Pack release libraries.zip
if: startsWith(github.event.ref, 'refs/tags') LaunchServer.jar
run: | ServerWrapper.jar
cd artifacts/ LauncherAuthlib.jar
zip -r -9 ../Release.zip * LauncherModules.zip
LaunchServerModules.zip
- name: Upload release ServerWrapperModules.zip
if: startsWith(github.event.ref, 'refs/tags') LauncherBase.zip
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./Release.zip
asset_name: Release.zip
asset_content_type: application/zip