-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
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
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 | ||
``` |
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
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 }}' |