diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0833d37..99c5bbb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,6 +10,7 @@ env: jobs: build_macos: + name: Build MacOS universal runs-on: macos-12 steps: - name: Install dependencies @@ -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 \ No newline at end of file + name: btop-darwin-universal-zip + path: ./btop-darwin-universal.zip \ No newline at end of file