Skip to content

Commit

Permalink
Fix version naming processing in the makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
alufers committed Sep 29, 2019
1 parent 5dba927 commit 4cd6eb6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Build
env:
PACKR2_PATH: /tmp/packr2
TRAVIS_TAG: ${{ github.ref }}
GITHUB_REF: ${{ github.ref }}
run: |
cd frontend && npm i && cd ..
make build-multiplatform
Expand Down
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ MAKEFLAGS += -j2

PACKR2_PATH ?= packr2


ifeq ($(TRAVIS_TAG),)
GITHUB_REF := $(FILE:refs/tags/%=%)
endif

ifeq ($(TRAVIS_TAG),)
TRAVIS_TAG := "development"
endif
Expand Down

0 comments on commit 4cd6eb6

Please sign in to comment.