Skip to content

Commit

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

0 comments on commit a7e93fc

Please sign in to comment.