Skip to content

Commit

Permalink
fix: bump version [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohmn committed Feb 16, 2024
1 parent 78abf84 commit 7787de2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/dev-build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ jobs:
file: ${{ matrix.dockerfile }}
push: true
tags: ${{ matrix.image_name }}
outputs:
bumped_version: ${{ needs.release.outputs.bumped_version }}

deploy:
name: Deploy to dev
Expand All @@ -109,7 +111,7 @@ jobs:
- name: get bumped version
id: get_bumped_version
run: |
echo "bumped_version=${{ needs.release.outputs.bumped_version }}" >> $GITHUB_OUTPUT
echo "bumped_version=${{ needs.build-and-push-docker.outputs.bumped_version }}" >> $GITHUB_OUTPUT
- name: Install kustomize
run: curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash
#- name: Load channel
Expand All @@ -118,7 +120,7 @@ jobs:
#- name: Print channel
# run: echo ${{ steps.channel.outputs.CHANNEL }}
- name: Run kustomize
run: (cd deployment/base && ../../kustomize edit set image greenstand/treetracker-web-map-client=greenstand/${{ github.event.repository.name }}-dev:${{needs.release.outputs.bumped_version}} )
run: (cd deployment/base && ../../kustomize edit set image greenstand/treetracker-web-map-client=greenstand/${{ github.event.repository.name }}-dev:${{needs.build-and-push-docker.outputs.bumped_version}} )
- name: Install doctl for kubernetes
uses: digitalocean/action-doctl@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "client",
"version": "2.9.0",
"version": "2.9.1",
"private": true,
"scripts": {
"build": "next build",
Expand Down

0 comments on commit 7787de2

Please sign in to comment.