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

chore: Clean up CI scripts #230

Closed
wants to merge 5 commits into from
Closed
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
abc
  • Loading branch information
jawnsy committed Feb 12, 2021
commit 92a65a1ead5c7a3bd6e6616aa5959bad033c4ba4
13 changes: 9 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
with:
fetch-depth: 0

- name: Build
run: make -j build/linux build/windows

- name: Upload
if: github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v2
Expand All @@ -28,10 +32,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Show git tags
run: git tag
- name: Show git tags
run: git describe --tags
with:
fetch-depth: 0

- name: Build
run: unset CI && make build/macos

Expand All @@ -41,6 +44,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install Gon
run: |
Expand Down