Skip to content

Commit a69b6d8

Browse files
Merge pull request #570 from Cerebellum-Network/fix_docker_build_issue
Fixed permission
2 parents 2c5f28f + 8202fd0 commit a69b6d8

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/publish-docker-image-to-dockerhub.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
types:
55
- published
66

7+
permissions:
8+
contents: read
9+
id-token: write
10+
711
env:
812
ECR_REPOSITORY: pos-network-node
913
DOCKERHUB_REPOSITORY: cerebellumnetwork
@@ -37,6 +41,7 @@ jobs:
3741
with:
3842
username: ${{ secrets.DOCKERHUB_USERNAME }}
3943
password: ${{ secrets.DOCKERHUB_TOKEN }}
44+
4045
- name: Publish image to DockerHub
4146
id: docker_publish
4247
run: |

runtime/cere-dev/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
164164
// and set impl_version to 0. If only runtime
165165
// implementation changes and behavior does not, then leave spec_version as
166166
// is and increment impl_version.
167-
spec_version: 73109,
167+
spec_version: 73110,
168168
impl_version: 0,
169169
apis: RUNTIME_API_VERSIONS,
170170
transaction_version: 24,

runtime/cere/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
159159
// and set impl_version to 0. If only runtime
160160
// implementation changes and behavior does not, then leave spec_version as
161161
// is and increment impl_version.
162-
spec_version: 73109,
162+
spec_version: 73110,
163163
impl_version: 0,
164164
apis: RUNTIME_API_VERSIONS,
165165
transaction_version: 24,

0 commit comments

Comments
 (0)