diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0dc0829..80a8dae 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,10 +13,13 @@ on: jobs: buildLinux: runs-on: ubuntu-latest + container: debian:buster steps: - uses: actions/checkout@v4 - name: Build Native Linux - run: make all + run: | + sudo apt install -y make gcc g++ + make all - uses: actions/upload-artifact@v4 with: path: Dist/ diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index faf2ec6..c3825fd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,12 +9,15 @@ 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: | + sudo apt install -y make gcc g++ + make all - uses: actions/upload-artifact@v4 with: path: Dist/