File tree 1 file changed +12
-0
lines changed
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 55
55
cd GUI && docker image build --tag $DOCKER_TAG_CUSTOM --no-cache .
56
56
if : ${{ env.BRANCH == 'test' }}
57
57
58
+ - name : Build Notification image
59
+ run : |
60
+ echo "Building Docker image for branch: ${{ env.BRANCH }} major: ${{ env.MAJOR }} minor: ${{ env.MINOR }} patch: ${{ env.PATCH }}"
61
+ cd notification-server && docker image build --tag notification-node-$DOCKER_TAG_CUSTOM --no-cache .
62
+ if : ${{ env.BRANCH == 'test' }}
63
+
58
64
- name : Log in to GitHub container registry
59
65
run : echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
60
66
64
70
docker push $DOCKER_TAG_CUSTOM
65
71
if : ${{ env.BRANCH == 'test' }}
66
72
73
+ - name : Push Notification image to GitHub Packages
74
+ run : |
75
+ echo "Pushing Docker image to GitHub Packages"
76
+ docker push notification-node-$DOCKER_TAG_CUSTOM
77
+ if : ${{ env.BRANCH == 'test' }}
78
+
67
79
- name : Create Release
68
80
uses : softprops/action-gh-release@v1
69
81
if : ${{ env.BRANCH == 'main' }}
You can’t perform that action at this time.
0 commit comments