Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
homerours committed Oct 21, 2024
1 parent e3274d0 commit 4d95e50
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## Installation

1. Download the `.tar.gz` file corresponding your os/architecture.
2. Run `tar -xvzf ./<your-file>.tar.gz`
3. Move `./jumper` to some a directory in your `$PATH`, e.g. `/usr/local/bin`.
4. Add the following to your `.bashrc`, `.zshrc` or `.config/fish/config.fish` to get access to jumper's functions:
* bash
```sh
eval "$(jumper shell bash)"
```
* zsh
```sh
source <(jumper shell zsh)
```
* fish
```fish
jumper shell fish | source
```
80 changes: 80 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: release
on:
push:
branches: [master]

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: build
run : |
make jumper
make clean
- name: Version
id: version
run: |
printf "version=$(./jumper -v)\n" >> $GITHUB_OUTPUT
release:
if: startsWith(github.event.head_commit.message, 'release')
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
VERSION: ${{ needs.build.outputs.version }}
run: |
gh release create "${VERSION}" --repo '${{ github.repository }}' --notes-file "$GITHUB_WORKSPACE/.github/workflows/notes.md"
publish:
needs : [build, release]
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
arch: x86_64
name: jumper-${{ needs.build.outputs.version }}-linux-x86_64
- os: ubuntu-latest
arch: arm64
name: jumper-${{ needs.build.outputs.version }}-linux-arm64
- os: macos-13
arch: x86_64
name: jumper-${{ needs.build.outputs.version }}-macos-x86_64
- os: macos-latest
arch: arm64
name: jumper-${{ needs.build.outputs.version }}-macos-arm64
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: build
run : |
make jumper
make clean
tar -czvf ${{ matrix.name }}.tar.gz jumper
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: ${{ matrix.name }}.tar.gz
retention-days: 1
- name: Add binary to release
env:
GITHUB_TOKEN: ${{ github.token }}
VERSION: ${{ needs.build.outputs.version }}
run: >-
gh release upload "${VERSION}" ${{ matrix.name }}.tar.gz
--repo '${{ github.repository }}'

0 comments on commit 4d95e50

Please sign in to comment.