Commit eae57e6 1 parent 0691d59 commit eae57e6 Copy full SHA for eae57e6
File tree 2 files changed +35
-5
lines changed
2 files changed +35
-5
lines changed Original file line number Diff line number Diff line change 53
53
push : true
54
54
tags : ${{ steps.meta.outputs.tags }}
55
55
labels : ${{ steps.meta.outputs.labels }}
56
+
57
+ # - name: update image tags in k8s manifests
58
+ # uses: fjogeleit/yaml-update-action@v0.9.0
59
+ # with:
60
+ # valueFile: 'kubernetes/base/deployment.yaml'
61
+ # propertyPath: 'spec.template.spec.containers[0].image'
62
+ # value: ghcr.io/robalb/morsechat:sha-${{ github.sha }}
63
+ # updateFile: true
64
+ # commitChange: false
65
+
66
+ - name : update image tags in compose-prod
67
+ uses : fjogeleit/yaml-update-action@v0.9.0
68
+ with :
69
+ valueFile : ' compose-prod/morsechat-go/docker-compose.yml'
70
+ propertyPath : ' services.morse.image'
71
+ value : ghcr.io/robalb/morsechat:sha-${{ github.sha }}
72
+ updateFile : true
73
+ commitChange : false
74
+
75
+ - name : Commit changes
76
+ run : |
77
+ git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
78
+ git config --local user.name "github-actions[bot]"
79
+ git commit -am "Updated image tags in the app manifests"
80
+
81
+ - name : Push changes
82
+ uses : ad-m/github-push-action@v0.6.0
83
+ with :
84
+ branch : ${{ github.ref }}
Original file line number Diff line number Diff line change 1
1
2
2
# week 3
3
- - [ ] clean files: add .dockerignore, and remove home.html
4
- - [ ] create docker container
5
- - [ ] create build pipeline with github actions
6
- - [ ] deploy test version under test domain
7
- - [ ] db migration, launch to prod
3
+ - [ ] add .dockerignore
4
+ - [x] clean files: and remove home.html
5
+ - [x] create docker container
6
+ - [x] create build pipeline with github actions
7
+ - [x] deploy test version under test domain
8
+ - [x] db migration, launch to prod
8
9
- [ ] integrate ip-only fingerprint
9
10
- [ ] add ip-only fingerprint to ws client struct, use it for
10
11
a better chamber functionality
You can’t perform that action at this time.
0 commit comments