Skip to content
This repository has been archived by the owner on Mar 13, 2021. It is now read-only.

Suppress git warning for detached head #364

Merged
merged 1 commit into from
May 28, 2020
Merged
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: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
- name: Create Builder
run: make build
- name: Test Builder
run: make test
run: |
git config --global --bool --add advice.detachedHead false
make test

publish:
needs: test
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACK ?= pack
BUILDER ?= projectriff/builder:dev-$(shell cat builder.toml | md5)
BUILDER ?= projectriff/builder:dev-$(shell openssl dgst -md5 builder.toml | cut -d' ' -f2)

.PHONY: build test

Expand Down
2 changes: 0 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
module github.com/projectriff/builder

go 1.13

require github.com/projectriff/libfnbuildpack v0.4.1
Loading