diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0dc0829..dbe31d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,10 +13,14 @@ on: jobs: buildLinux: runs-on: ubuntu-latest + container: debian:buster steps: - uses: actions/checkout@v4 - name: Build Native Linux - run: make all + run: | + apt update + apt install -y make gcc g++ unzip + make all - uses: actions/upload-artifact@v4 with: path: Dist/ diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index faf2ec6..6fef04c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,12 +9,16 @@ on: jobs: buildLinux: runs-on: ubuntu-latest + container: debian:buster env: VERSION: ${{ github.event.release.tag_name }} steps: - uses: actions/checkout@v4 - name: Build Native Linux - run: make all + run: | + apt update + apt install -y make gcc g++ unzip + make all - uses: actions/upload-artifact@v4 with: path: Dist/