File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 2020 notifications :
2121 description : " Version of the notifications. Only numbers"
2222 required : true
23+ premium :
24+ description : " Version of the premium. Only numbers"
25+ required : true
2326
2427env :
2528 CORE_BUMP_TYPE : ${{ github.event.inputs.core }}
2831 DAPPMANAGER_VERSION : ${{ github.event.inputs.dappmanager }}
2932 WIFI_VERSION : ${{ github.event.inputs.wifi }}
3033 NOTIFICATIONS_VERSION : ${{ github.event.inputs.notifications }}
34+ PREMIUM_VERSION : ${{ github.event.inputs.premium }}
3135
3236jobs :
3337 release :
4246 - name : Check versions regex
4347 run : |
4448 [[ $BIND_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $IPFS_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $DAPPMANAGER_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && \
45- [[ $WIFI_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $NOTIFICATIONS_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || { echo "versions introduced in wrong format"; exit 1; }
49+ [[ $WIFI_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $NOTIFICATIONS_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && [[ $PREMIUM_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || \
50+ { echo "versions introduced in wrong format"; exit 1; }
4651
4752 - uses : actions/checkout@v4
4853
5459 sed -i -e "/dappmanager.dnp.dappnode.eth/s/[0-9]*\.[0-9]*\.[0-9]*/"${DAPPMANAGER_VERSION}"/" dappnode_package.json
5560 sed -i -e "/wifi.dnp.dappnode.eth/s/[0-9]*\.[0-9]*\.[0-9]*/"${WIFI_VERSION}"/" dappnode_package.json
5661 sed -i -e "/notifications.dnp.dappnode.eth/s/[0-9]*\.[0-9]*\.[0-9]*/"${NOTIFICATIONS_VERSION}"/" dappnode_package.json
62+ sed -i -e "/premium.dnp.dappnode.eth/s/[0-9]*\.[0-9]*\.[0-9]*/"${PREMIUM_VERSION}"/" dappnode_package.json
5763 cat dappnode_package.json
5864
5965 - name : Setup node
Original file line number Diff line number Diff line change 11{
22 "name" : " core.dnp.dappnode.eth" ,
3- "version" : " 0.3.8 " ,
3+ "version" : " 0.3.9 " ,
44 "description" : " DAppNode package responsible for managing the core packages" ,
55 "type" : " dncore" ,
66 "architectures" : [" linux/amd64" , " linux/arm64" ],
2323 "dependencies" : {
2424 "bind.dnp.dappnode.eth" : " 0.2.12" ,
2525 "ipfs.dnp.dappnode.eth" : " 0.2.26" ,
26- "dappmanager.dnp.dappnode.eth" : " 0.2.110 " ,
26+ "dappmanager.dnp.dappnode.eth" : " 0.2.111 " ,
2727 "wifi.dnp.dappnode.eth" : " 0.2.9" ,
28- "notifications.dnp.dappnode.eth" : " 0.1.5"
28+ "notifications.dnp.dappnode.eth" : " 0.1.6" ,
29+ "premium.dnp.dappnode.eth" : " 0.1.0"
2930 },
3031 "optionalDependencies" : {
3132 "wireguard.dnp.dappnode.eth" : " 0.1.3" ,
You can’t perform that action at this time.
0 commit comments