feat: add SARIF support, nightly releases, and gh actions improvements #1
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
| name: Nightly Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'src/**' | |
| - 'Cargo.toml' | |
| - 'Cargo.lock' | |
| workflow_dispatch: # Allow manual trigger | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| name: Build ${{ matrix.target }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| include: | |
| - target: x86_64-apple-darwin | |
| os: macos-latest | |
| - target: aarch64-apple-darwin | |
| os: macos-latest | |
| - target: x86_64-unknown-linux-gnu | |
| os: ubuntu-latest | |
| - target: aarch64-unknown-linux-gnu | |
| os: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: ${{ matrix.target }} | |
| - name: Install cross (Linux ARM) | |
| if: matrix.target == 'aarch64-unknown-linux-gnu' | |
| run: cargo install cross | |
| - name: Build (cross) | |
| if: matrix.target == 'aarch64-unknown-linux-gnu' | |
| run: cross build --release --target ${{ matrix.target }} | |
| - name: Build (native) | |
| if: matrix.target != 'aarch64-unknown-linux-gnu' | |
| run: cargo build --release --target ${{ matrix.target }} | |
| - name: Package | |
| shell: bash | |
| run: | | |
| cd target/${{ matrix.target }}/release | |
| tar -czvf ../../../weasel-${{ matrix.target }}.tar.gz weasel | |
| cd ../../.. | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: weasel-${{ matrix.target }} | |
| path: weasel-${{ matrix.target }}.tar.gz | |
| release: | |
| name: Create Nightly Release | |
| needs: build | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Get version and date | |
| id: version | |
| run: | | |
| DATE=$(date +%Y%m%d) | |
| SHORT_SHA=$(echo "${{ github.sha }}" | cut -c1-7) | |
| echo "tag=nightly-${DATE}-${SHORT_SHA}" >> $GITHUB_OUTPUT | |
| echo "name=Nightly ${DATE}" >> $GITHUB_OUTPUT | |
| - name: Download artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: artifacts | |
| - name: Delete existing nightly tag | |
| continue-on-error: true | |
| run: | | |
| git push origin :refs/tags/${{ steps.version.outputs.tag }} || true | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: ${{ steps.version.outputs.tag }} | |
| name: ${{ steps.version.outputs.name }} | |
| files: artifacts/**/*.tar.gz | |
| prerelease: true | |
| body: | | |
| ## Nightly Build | |
| This is an automated nightly build from the `main` branch. | |
| **Commit:** ${{ github.sha }} | |
| **Date:** ${{ steps.version.outputs.tag }} | |
| > ⚠️ This is a pre-release build and may be unstable. | |
| ### Installation | |
| ```bash | |
| # Using weaselup (will install latest stable) | |
| curl -sSL https://raw.githubusercontent.com/slvDev/weasel/main/weaselup/install | bash | |
| # Or download this nightly directly | |
| # macOS (Apple Silicon) | |
| curl -sSL https://github.com/slvDev/weasel/releases/download/${{ steps.version.outputs.tag }}/weasel-aarch64-apple-darwin.tar.gz | tar xz | |
| # macOS (Intel) | |
| curl -sSL https://github.com/slvDev/weasel/releases/download/${{ steps.version.outputs.tag }}/weasel-x86_64-apple-darwin.tar.gz | tar xz | |
| # Linux (x86_64) | |
| curl -sSL https://github.com/slvDev/weasel/releases/download/${{ steps.version.outputs.tag }}/weasel-x86_64-unknown-linux-gnu.tar.gz | tar xz | |
| ``` |