We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
make docker-push
1 parent 059210a commit 19f8d67Copy full SHA for 19f8d67
.github/workflows/generate-manifest.yml
@@ -36,9 +36,15 @@ jobs:
36
[ "$VERSION" == "main" ] && VERSION=$(echo ${{ github.sha }} | cut -c1-8)
37
echo IMAGE_ID=$IMAGE_ID
38
echo VERSION=$VERSION
39
+ echo "IMAGE_ID=$IMAGE_ID" >> $GITHUB_ENV
40
+ echo "VERSION=$VERSION" >> $GITHUB_ENV
41
make docker-build docker-push split-installer IMG=$IMAGE_ID:$VERSION
42
mkdir -p manifests/controller
43
cp dist/* manifests/controller/
44
+ - name: Push docker image
45
+ if: github.event.pull_request.merged == true
46
+ run: |
47
+ make docker-push IMG=$IMAGE_ID:$VERSION
48
- name: Commit changes
49
run: |
50
git config --global user.name 'github-actions[bot]'
0 commit comments