Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 12, 2024
1 parent e12409a commit b6ede43
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Release

permissions:
contents: write

on:
push:
tags:
- v[0-9]+.*

env:
CARGO_TERM_COLOR: always

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
# changelog: CHANGELOG.md not working for some reason
token: ${{ secrets.GITHUB_TOKEN }}

upload-assets:
needs: create-release
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- target: aarch64-apple-darwin
os: macos-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
- target: aarch64-pc-windows-msvc
os: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install cross-compilation tools
uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
with:
shared-key: rust-${{ matrix.target }}
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: wait-for-gh-rate-limit
target: ${{ matrix.target }}
token: ${{ secrets.GITHUB_TOKEN }}
8 changes: 8 additions & 0 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ Pitchfork is a CLI for launching daemons with a focus on developer experience.

Here's some common ways to use pitchfork.

## Installing pitchfork

[mise-en-place](https://mise.jdx.dev) is the recommended way to install pitchfork.

- mise-en-place – `mise use -g pitchfork`
- cargo – `cargo install pitchfork-cli`
- github - <https://github.com/jdx/pitchfork/releases>

### Launching a one-off daemon

This workflow is an alternative to something like shell jobs—`mytask &`. This just runs a process in
Expand Down

0 comments on commit b6ede43

Please sign in to comment.