Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Build linux/windows on ubuntu runner #202

Merged
merged 8 commits into from
Dec 10, 2020
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fixup! Use Makefile for builds and use ubuntu runner
  • Loading branch information
cmoog committed Dec 9, 2020
commit f93cb39999e729bca1bf7cc639e8fec56cbbbaba
10 changes: 3 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,7 @@ jobs:
- build_darwin
- build
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
path: ./ci/bin
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -76,7 +72,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./ci/bin/coder-cli-linux-amd64.tar.gz
asset_path: coder-cli-linux-amd64.tar.gz
asset_name: coder-cli-linux-amd64.tar.gz
asset_content_type: application/tar+gzip
- name: Upload MacOS Release
Expand All @@ -86,7 +82,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./ci/bin/coder-cli-darwin-amd64.zip
asset_path: coder-cli-darwin-amd64.zip
asset_name: coder-cli-darwin-amd64.zip
asset_content_type: application/zip
- name: Upload Windows Release
Expand All @@ -96,6 +92,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./ci/bin/coder-cli-windows-386.zip
asset_path: coder-cli-windows-386.zip
asset_name: coder-cli-windows-386.zip
asset_content_type: application/zip