diff --git a/.github/actions/macos/action.yml b/.github/actions/macos/action.yml index f6af2c2..1adcfd5 100644 --- a/.github/actions/macos/action.yml +++ b/.github/actions/macos/action.yml @@ -7,6 +7,7 @@ runs: - uses: Swatinem/rust-cache@v2 - uses: dtolnay/rust-toolchain@stable - name: Build macOS Release + shell: bash run: cargo build --release - name: copy binary shell: bash diff --git a/.github/actions/ubuntu-recorder/action.yml b/.github/actions/ubuntu-recorder/action.yml index de39017..7d55062 100644 --- a/.github/actions/ubuntu-recorder/action.yml +++ b/.github/actions/ubuntu-recorder/action.yml @@ -9,6 +9,7 @@ runs: - uses: Swatinem/rust-cache@v2 - uses: dtolnay/rust-toolchain@stable - name: Build Ubuntu Recorder Release + shell: bash run: cargo build --release -p neothesia-cli - name: Chmod +x shell: bash diff --git a/.github/actions/ubuntu/action.yml b/.github/actions/ubuntu/action.yml index af202df..5c4b8c7 100644 --- a/.github/actions/ubuntu/action.yml +++ b/.github/actions/ubuntu/action.yml @@ -8,6 +8,7 @@ runs: run: sudo apt update && sudo apt install libasound2-dev libgtk-3-dev - uses: Swatinem/rust-cache@v2 - uses: dtolnay/rust-toolchain@stable + shell: bash - name: Build Ubuntu Release run: cargo build --release - name: Chmod +x diff --git a/.github/actions/windows-recorder/action.yml b/.github/actions/windows-recorder/action.yml index 666eb36..b7c64a6 100644 --- a/.github/actions/windows-recorder/action.yml +++ b/.github/actions/windows-recorder/action.yml @@ -18,6 +18,7 @@ runs: - uses: Swatinem/rust-cache@v2 - uses: dtolnay/rust-toolchain@stable + shell: bash - name: Build Ubuntu Release run: cargo build --release -p neothesia-cli - uses: actions/upload-artifact@v4 diff --git a/.github/actions/windows/action.yml b/.github/actions/windows/action.yml index 0affc47..7986e16 100644 --- a/.github/actions/windows/action.yml +++ b/.github/actions/windows/action.yml @@ -5,6 +5,7 @@ runs: steps: - uses: Swatinem/rust-cache@v2 - uses: dtolnay/rust-toolchain@stable + shell: bash - name: Build Windows Release run: cargo build --release - uses: actions/upload-artifact@v4