Skip to content

Commit c130715

Browse files
committed
Fixed docker run
1 parent f823986 commit c130715

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
push:
77
branches:
88
- 'develop'
9-
- 'feature/update-tag-on-push'
109
paths-ignore:
1110
- 'doc/**'
1211
tags:
@@ -131,13 +130,13 @@ jobs:
131130
repository: ether/ether-charts
132131
token: ${{ secrets.ETHER_CHART_TOKEN }}
133132
- name: Update tag in values-dev.yaml
134-
#if: github.event == 'push' && github.ref == 'refs/heads/develop'
133+
if: github.event == 'push' && github.ref == 'refs/heads/develop'
135134
working-directory: ether-charts
136135
run: |
137136
sed -i 's/tag: ".*"/tag: "${{ steps.build-docker.outputs.digest }}"/' values-dev.yaml
138137
- name: Commit and push changes
139138
working-directory: ether-charts
140-
#if: github.event == 'push' && github.ref == 'refs/heads/develop'
139+
if: github.event == 'push' && github.ref == 'refs/heads/develop'
141140
run: |
142141
git config --global user.name 'github-actions[bot]'
143142
git config --global user.email 'github-actions[bot]@users.noreply.github.com'

0 commit comments

Comments
 (0)