docs: Improve PER_CPU types documentation #3
This file contains 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
# This workflow builds and uploads the bpftrace appimage as a build artifact. | |
# | |
# This is useful for users who want to download the latest and greatest bpftrace | |
# binary without going through a local build. | |
name: Binary | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@v11 | |
- uses: DeterminateSystems/magic-nix-cache-action@v6 | |
- name: Build appimage | |
run: | | |
nix build .#appimage | |
cp ./result bpftrace | |
- name: Upload appimage | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bpftrace | |
path: ./bpftrace |