Skip to content

Commit

Permalink
fix: fix tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
ZavenArra committed Dec 9, 2020
1 parent 503faf8 commit 6b5a478
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/treetracker-wallet-api-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ jobs:
if: github.event_name == 'push' && github.repository == 'Greenstand/treetracker-wallet-api'
steps:
- uses: actions/checkout@v2
- name: get-npm-version
id: package-version
uses: martinbeentjes/npm-get-version-action@master
with:
path: ./
- name: Set git sha
id: git-sha
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
Expand All @@ -97,7 +102,7 @@ jobs:
- name: Copy kustomize.yml
run: cp deployment/kustomize/kustomization.yaml deployment/kustomization.yaml
- name: Run kustomize
run: (cd deployment && ../kustomize edit set image greenstand/treetracker-wallet-api:${{ steps.git-sha.outputs.sha_short }} )
run: (cd deployment && ../kustomize edit set image greenstand/treetracker-wallet-api:${{ steps.package-version.outputs.current-version }}-${{ steps.git-sha.outputs.sha_short }} )
- name: Install doctl for kubernetes
uses: digitalocean/action-doctl@v2
with:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 1.0.0 (2020-12-09)


### Bug Fixes

* set up hooks ([21580a5](https://github.com/Greenstand/treetracker-wallet-api/commit/21580a5f801ce72cb030bebbfcfba3532e3d485d))

0 comments on commit 6b5a478

Please sign in to comment.