Skip to content

Commit

Permalink
mark build as universal
Browse files Browse the repository at this point in the history
  • Loading branch information
bjia56 authored Jul 21, 2024
1 parent 8884a7e commit fd44834
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ env:

jobs:
build_macos:
name: Build MacOS universal
runs-on: macos-12
steps:
- name: Install dependencies
Expand Down Expand Up @@ -38,11 +39,11 @@ jobs:
cd ${{ github.workspace }}
tar -czf ${{ github.workspace }}/btop.tar.gz btop-install
zip ${{ github.workspace }}/btop.zip $(tar tf ${{ github.workspace }}/btop.tar.gz)
tar -czf ${{ github.workspace }}/btop.tar.gz btop-install/*
zip ${{ github.workspace }}/btop-darwin-universal.zip $(tar tf ${{ github.workspace }}/btop.tar.gz)
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: btop
path: ./btop.zip
name: btop-darwin-universal-zip
path: ./btop-darwin-universal.zip

0 comments on commit fd44834

Please sign in to comment.