This repository was archived by the owner on Sep 8, 2026. It is now read-only.
cli: add --now flag for instant seat allocation (#293) #13
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
| name: releaser.doublezero-solana | |
| on: | |
| push: | |
| tags: | |
| - "doublezero-solana/v*.*.*" | |
| permissions: | |
| contents: write | |
| jobs: | |
| goreleaser: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-targets: | | |
| target | |
| target/x86_64-unknown-linux-gnu/release | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Install dependencies for rpm packaging | |
| run: | | |
| sudo apt update | |
| sudo apt install squashfs-tools rpm -y | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v6 | |
| with: | |
| distribution: goreleaser-pro | |
| args: release -f release/.goreleaser.doublezero-solana-cli.yaml --clean | |
| env: | |
| SERVICEABILITY_PROGRAM_ID: devnet | |
| SLACK_WEBHOOK: ${{ secrets.SLACK_BOTS_WEBHOOK }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} | |
| CLOUDSMITH_TOKEN: ${{ secrets.CLOUDSMITH_TOKEN }} |