Skip to content

Commit 6b5a478

Browse files
committed
fix: fix tag name
1 parent 503faf8 commit 6b5a478

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/treetracker-wallet-api-build-deploy.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ jobs:
8989
if: github.event_name == 'push' && github.repository == 'Greenstand/treetracker-wallet-api'
9090
steps:
9191
- uses: actions/checkout@v2
92+
- name: get-npm-version
93+
id: package-version
94+
uses: martinbeentjes/npm-get-version-action@master
95+
with:
96+
path: ./
9297
- name: Set git sha
9398
id: git-sha
9499
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
@@ -97,7 +102,7 @@ jobs:
97102
- name: Copy kustomize.yml
98103
run: cp deployment/kustomize/kustomization.yaml deployment/kustomization.yaml
99104
- name: Run kustomize
100-
run: (cd deployment && ../kustomize edit set image greenstand/treetracker-wallet-api:${{ steps.git-sha.outputs.sha_short }} )
105+
run: (cd deployment && ../kustomize edit set image greenstand/treetracker-wallet-api:${{ steps.package-version.outputs.current-version }}-${{ steps.git-sha.outputs.sha_short }} )
101106
- name: Install doctl for kubernetes
102107
uses: digitalocean/action-doctl@v2
103108
with:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# 1.0.0 (2020-12-09)
2+
3+
4+
### Bug Fixes
5+
6+
* set up hooks ([21580a5](https://github.com/Greenstand/treetracker-wallet-api/commit/21580a5f801ce72cb030bebbfcfba3532e3d485d))

0 commit comments

Comments
 (0)