Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat: add coder-cli nightly release#12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
cmoog merged 4 commits intomasterfromcmoog/coder-cli-nightly
Jan 29, 2021
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion.github/workflows/test.yaml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,4 +11,12 @@ jobs:
- uses: actions/checkout@v1
- run: brew install --build-from-source ./coder-cli.rb
- run: coder --version

coder_cli_nightly:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- run: brew install --build-from-source ./coder-cli-nightly.rb
- run: coder --version
21 changes: 21 additions & 0 deletionscoder-cli-nightly.rb
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
class CoderCliNightly < Formula
desc "Command-line tool for the Coder remote development platform, nightly release channel"
homepage "https://github.com/cdr/coder-cli"
version "1.16.0-rc.0"
bottle :unneeded

if OS.mac?
url "https://github.com/cdr/coder-cli/releases/download/v1.16.0-rc.0/coder-cli-darwin-amd64.zip"
sha256 "283fbdbbd57ca75361ac89fb0300546483c326bb047e7cd96eb524c39241c5c5"
else
url "https://github.com/cdr/coder-cli/releases/download/v1.16.0-rc.0/coder-cli-linux-amd64.tar.gz"
sha256 "7552b45f956c2a027c58beb0867d6df32d75291a0a5b6ad0c6bc9957306da989"
end

def install
bin.install "coder"
end
test do
system "#{bin}/coder", "--version"
end
end

[8]ページ先頭

©2009-2025 Movatter.jp