This commit is contained in:
Nicholas Orlowsky 2023-01-26 00:08:14 -06:00
commit 05840f5aa6

View file

@ -24,6 +24,8 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Log in to the Container registry - name: Log in to the Container registry
uses: docker/login-action@v1 uses: docker/login-action@v1
@ -48,10 +50,10 @@ jobs:
id: vnum id: vnum
with: with:
# The prefix to use to identify tags # The prefix to use to identify tags
tag_prefix: "v" tag_prefix: ""
major_pattern: "(MAJOR)" major_pattern: "(MAJOR)"
minor_pattern: "(MINOR)" minor_pattern: "(MINOR)"
version_format: "${major}.${minor}.${increment}" version_format: "${major}.${minor}.${patch}-${increment}"
bump_each_commit: true bump_each_commit: true
- name: Build and push Docker image - name: Build and push Docker image