Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line numberDiff line numberDiff line change
Expand Up@@ -40,7 +40,7 @@ jobs:
run: make -j build/linux build/windows

- name: Upload
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: coder-cli
path: ./ci/bin/coder-cli-*
Expand DownExpand Up@@ -75,7 +75,7 @@ jobs:
AC_PASSWORD: ${{ secrets.AC_PASSWORD }}

- name: Upload
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: coder-cli
path: ./ci/bin/coder-cli-*
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line numberDiff line numberDiff line change
Expand Up@@ -34,13 +34,13 @@ jobs:
run: make -j build/linux build/windows

- name: Upload linux
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: coder-cli-linux-amd64
path: ./ci/bin/coder-cli-linux-amd64.tar.gz

- name: Upload windows
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: coder-cli-windows
path: ./ci/bin/coder-cli-windows.zip
Expand DownExpand Up@@ -76,7 +76,7 @@ jobs:
AC_PASSWORD: ${{ secrets.AC_PASSWORD }}

- name: Upload darwin
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: coder-cli-darwin-amd64
path: ./ci/bin/coder-cli-darwin-amd64.zip
Expand Down