Skip to content

Commit

Permalink
gh workflow iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
samifouad committed Aug 5, 2024
1 parent 1c936f9 commit 43f8fb6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 30 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,25 +259,25 @@ jobs:
run: tar -czf gild-cli_${{ github.ref_name }}_linux-x64.tar.gz gild-cli_${{ github.ref_name }}_linux-x64/gild

- name: sha256 for linux-x64
run: shasum -a 256 | awk '{print $1}' > gild-cli_${{ github.ref_name }}_linux-x64.tar.gz > gild-cli_${{ github.ref_name }}_linux-x64.txt
run: shasum -a 256 gild-cli_${{ github.ref_name }}_linux-x64.tar.gz | awk '{print $1}' > gild-cli_${{ github.ref_name }}_linux-x64.txt

- name: tarball for darwin-arm64
run: tar -czf gild-cli_${{ github.ref_name }}_darwin-arm64.tar.gz gild-cli_${{ github.ref_name }}_darwin-arm64/gild

- name: sha256 for darwin-arm64
run: shasum -a 256 | awk '{print $1}' > gild-cli_${{ github.ref_name }}_darwin-arm64.tar.gz > gild-cli_${{ github.ref_name }}_darwin-arm64.txt
run: shasum -a 256 gild-cli_${{ github.ref_name }}_darwin-arm64.tar.gz | awk '{print $1}' > gild-cli_${{ github.ref_name }}_darwin-arm64.txt

- name: tarball for darwin-x64
run: tar -czf gild-cli_${{ github.ref_name }}_darwin-x64.tar.gz gild-cli_${{ github.ref_name }}_darwin-x64/gild

- name: sha256 for darwin-x64
run: shasum -a 256 | awk '{print $1}' > gild-cli_${{ github.ref_name }}_darwin-x64.tar.gz > gild-cli_${{ github.ref_name }}_darwin-x64.txt
run: shasum -a 256 gild-cli_${{ github.ref_name }}_darwin-x64.tar.gz | awk '{print $1}' > gild-cli_${{ github.ref_name }}_darwin-x64.txt

- name: tarball for windows-x64
run: tar -czf gild-cli_${{ github.ref_name }}_windows-x64.tar.gz gild-cli_${{ github.ref_name }}_windows-x64/gild.exe

- name: sha256 for windows-x64
run: shasum -a 256 | awk '{print $1}' > gild-cli_${{ github.ref_name }}_windows-x64.tar.gz > gild-cli_${{ github.ref_name }}_windows-x64.txt
run: shasum -a 256 gild-cli_${{ github.ref_name }}_windows-x64.tar.gz | awk '{print $1}' > gild-cli_${{ github.ref_name }}_windows-x64.txt

- name: release
uses: softprops/action-gh-release@v2
Expand Down
26 changes: 0 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +0,0 @@
# gild-cli

documentation coming soon to [gild.gg](https://gild.gg)

## installation
install with [npm](https://npmjs.com): ```npm install -g @samifouad/gild```

install with [bun](https://bun.sh): ```bun add -g @samifouad/gild```

if don't have a javascript package manager installed, see below for a method that will work for your OS

## [homebrew](https://brew.sh) for macOS & linux

first run: ```brew tap samifouad/gild```

then run: ```brew install gild```

## [scoop](https://scoop.sh) for windows

support is planned & coming soon

## dependencies

gild requires a recent version of [incus](https://linuxcontainers.org/incus/) installed. if you use homebrew, it will be automatically installed when you run the install command. otherwise check out the incus website for [installation instructions](https://linuxcontainers.org/incus/docs/main/installing/#installing-from-package).

there are no other dependencies.

0 comments on commit 43f8fb6

Please sign in to comment.