Skip to content

Commit

Permalink
Change Actions to build inside debian 10 container
Browse files Browse the repository at this point in the history
  • Loading branch information
Nutcake committed Jan 25, 2024
1 parent fba7f70 commit d79a79b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down

0 comments on commit d79a79b

Please sign in to comment.