chore: cleanup docs references to archived core implementation #2
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
| # ============================================================================= | |
| # TEMPORARILY DISABLED — commented out until the repo and secrets are ready. | |
| # Re-enable by uncommenting the block below (remove the leading "# " on each | |
| # line after this banner). | |
| # ============================================================================= | |
| # name: Release | |
| # | |
| # # Cut a release by pushing a tag like v0.1.0. | |
| # on: | |
| # push: | |
| # tags: ["v*"] | |
| # | |
| # permissions: | |
| # contents: write # create the GitHub Release + upload assets | |
| # packages: write # push the container image to GHCR | |
| # | |
| # env: | |
| # CARGO_TERM_COLOR: always | |
| # IMAGE: ghcr.io/${{ github.repository_owner }}/queueflow | |
| # | |
| # jobs: | |
| # binaries: | |
| # name: Build ${{ matrix.target }} | |
| # runs-on: ${{ matrix.os }} | |
| # strategy: | |
| # fail-fast: false | |
| # matrix: | |
| # include: | |
| # - os: ubuntu-latest | |
| # target: x86_64-unknown-linux-gnu | |
| # - os: macos-latest | |
| # target: aarch64-apple-darwin | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - uses: dtolnay/rust-toolchain@1.83.0 | |
| # with: | |
| # targets: ${{ matrix.target }} | |
| # - uses: Swatinem/rust-cache@v2 | |
| # - name: Build | |
| # run: cargo build --release -p queueflow-server --target ${{ matrix.target }} | |
| # - name: Package | |
| # shell: bash | |
| # run: | | |
| # bin=target/${{ matrix.target }}/release/queueflow | |
| # tar -C "$(dirname "$bin")" -czf "queueflow-${{ matrix.target }}.tar.gz" queueflow | |
| # - name: Upload to release | |
| # uses: softprops/action-gh-release@v2 | |
| # with: | |
| # files: queueflow-${{ matrix.target }}.tar.gz | |
| # | |
| # docker: | |
| # name: Container image | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - uses: docker/setup-buildx-action@v3 | |
| # - name: Log in to GHCR | |
| # uses: docker/login-action@v3 | |
| # with: | |
| # registry: ghcr.io | |
| # username: ${{ github.actor }} | |
| # password: ${{ secrets.GITHUB_TOKEN }} | |
| # - name: Metadata | |
| # id: meta | |
| # uses: docker/metadata-action@v5 | |
| # with: | |
| # images: ${{ env.IMAGE }} | |
| # tags: | | |
| # type=semver,pattern={{version}} | |
| # type=semver,pattern={{major}}.{{minor}} | |
| # type=raw,value=latest | |
| # - name: Build and push | |
| # uses: docker/build-push-action@v6 | |
| # with: | |
| # context: . | |
| # platforms: linux/amd64,linux/arm64 | |
| # push: true | |
| # tags: ${{ steps.meta.outputs.tags }} | |
| # labels: ${{ steps.meta.outputs.labels }} | |
| # cache-from: type=gha | |
| # cache-to: type=gha,mode=max |