Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
NevermindNilas committed Sep 1, 2024
1 parent 3dfb45c commit 95d2b43
Showing 1 changed file with 43 additions and 43 deletions.
86 changes: 43 additions & 43 deletions .github/workflows/Build-All-Platforms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,49 +71,49 @@ jobs:
asset_name: TAS_${{ needs.create_release.outputs.version }}_Full_Windows.7z
asset_content_type: application/x-7z-compressed

build_full_linux:
needs: create_release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.12.4"

- name: Free Disk Space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true

- name: Run full build script
run: python build-linux.py

- name: Compress full directory
run: |
cd ${{ github.workspace }}/dist/main/
7z a -t7z -m0=lzma2 -mx=9 -ms=1536m -md=273m ../../TAS_${{ needs.create_release.outputs.version }}_Full_Linux.7z *
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.TAS }}
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
asset_path: TAS_${{ needs.create_release.outputs.version }}_Full_Linux.7z
asset_name: TAS_${{ needs.create_release.outputs.version }}_Full_Linux.7z
asset_content_type: application/x-7z-compressed
#build_full_linux:
# needs: create_release
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# with:
# submodules: recursive
#
# - name: Set up Python
# uses: actions/setup-python@v2
# with:
# python-version: "3.12.4"
#
# - name: Free Disk Space
# uses: jlumbroso/free-disk-space@main
# with:
# tool-cache: false
# android: true
# dotnet: true
# haskell: true
# large-packages: true
# docker-images: true
# swap-storage: true
#
# - name: Run full build script
# run: python build-linux.py
#
# - name: Compress full directory
# run: |
# cd ${{ github.workspace }}/dist-full/main/
# 7z a -t7z -m0=lzma2 -mx=9 -ms=1536m -md=273m ../../TAS_${{ needs.create_release.outputs.version }}_Full_Linux.7z *
#
# - name: Upload Release Asset
# id: upload-release-asset
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.TAS }}
# with:
# upload_url: ${{ needs.create_release.outputs.upload_url }}
# asset_path: TAS_${{ needs.create_release.outputs.version }}_Full_Linux.7z
# asset_name: TAS_${{ needs.create_release.outputs.version }}_Full_Linux.7z
# asset_content_type: application/x-7z-compressed

build_lite_windows:
needs: create_release
Expand Down

0 comments on commit 95d2b43

Please sign in to comment.