Multiple BSIDs #15
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| release: | |
| types: [created] | |
| jobs: | |
| release: | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: Linux-x86_64 | |
| target: x86_64-unknown-linux-gnu | |
| runner: ubuntu-latest | |
| - name: macOS-Apple | |
| target: aarch64-apple-darwin | |
| runner: macos-latest | |
| - name: macOS-Intel | |
| target: x86_64-apple-darwin | |
| runner: macos-latest | |
| - name: Windows | |
| target: i686-pc-windows-msvc | |
| runner: windows-latest | |
| name: ${{ matrix.name }} | |
| runs-on: ${{ matrix.runner }} | |
| steps: | |
| - name: Fetch Repository | |
| uses: actions/checkout@v3 | |
| - name: Update and Install Dependencies (Linux) | |
| if: ${{ matrix.runner == 'ubuntu-latest' }} | |
| run: | | |
| sudo apt update | |
| sudo apt upgrade -y | |
| sudo apt install -y libdbus-1-dev | |
| - name: Update Rust Toolchain | |
| run: rustup update stable | |
| - name: Add Rust Target | |
| run: rustup target add ${{ matrix.target }} | |
| - name: Build Release Binary | |
| run: cargo build --release --target ${{ matrix.target }} | |
| - name: Create Zip Archive (Windows) | |
| if: ${{ matrix.runner == 'windows-latest' }} | |
| run: bash -c '7z a ${{ matrix.name }}.zip ./target/${{ matrix.target }}/release/lighthouse.exe' | |
| - name: Create Zip Archive (Other) | |
| if: ${{ matrix.runner != 'windows-latest' }} | |
| run: zip -j ${{ matrix.name }}.zip target/${{ matrix.target }}/release/lighthouse | |
| - name: Upload Zip Archive | |
| run: gh release upload ${{ github.ref_name }} ${{ matrix.name }}.zip --clobber |