We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49a1199 commit d3e9a32Copy full SHA for d3e9a32
.github/workflows/test.yaml
@@ -36,7 +36,7 @@ jobs:
36
build:
37
name: Build and Upload
38
runs-on: ubuntu-latest
39
- if: github.ref == 'refs/heads/prereleaases' || github.event_name == 'release'
+ if: github.ref == 'refs/heads/prereleases' || github.event_name == 'release'
40
needs: test
41
steps:
42
- uses: actions/checkout@v4
Makefile
@@ -15,7 +15,7 @@ ifeq ($(shell git status -s),)
15
ifeq ($(COMMITS_SINCE_TAG),0)
16
TAG_VERSION ?= $(BASE_VERSION)
17
else
18
- TAG_VERSION ?= $(NEXT_VERSION)-pre.$(COMMITS_SINCE_TAG)
+ TAG_VERSION ?= $(NEXT_VERSION)-dev.$(COMMITS_SINCE_TAG)
19
endif
20
21
GIT_REVISION = $(shell git rev-parse HEAD | tr -d '\n')
0 commit comments