Skip to content

Commit

Permalink
Only make dist
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
  • Loading branch information
alexellis committed Feb 27, 2023
1 parent d5088a7 commit a4b322f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ jobs:
uses: actions/setup-go@v3
with:
go-version: 1.19.x
- name: Make all
run: make all
- name: Make dist
run: make dist
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
uses: actions/setup-go@v3
with:
go-version: 1.19.x
- name: Make all
run: make all
- name: Make dist
run: make dist
- name: Upload release binaries
uses: alexellis/[email protected]
env:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export GO111MODULE=on
export LDFLAGS="-s -w"

.PHONY: all
all: gofmt test build dist hash
all: gofmt test build dist

.PHONY: build
build:
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Includes total runtime of all workflow runs and workflow jobs, including where t

Or create a [Classic Token](https://github.com/settings/tokens) with: repo and admin:org and save it to ~/pat.txt. Create a short lived duration for good measure.

Download a binary from the [releases page](https://github.com/self-actuated/actions-usage/releases/tag/v0.0.1)

Or clone the source and run it:

```bash
git clone https://github.com/actuated/actions-usage --depth=1
cd actions-usage
Expand Down

0 comments on commit a4b322f

Please sign in to comment.