File tree 1 file changed +19
-0
lines changed
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 90
90
GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
91
91
run : |
92
92
gh release create ${{github.event.inputs.version}} -t ${{github.event.inputs.version}} -n "Changes since last release:"$'\n\n'"$CHANGES" *.rpm
93
+ - name : Set up QEMU
94
+ uses : docker/setup-qemu-action@v3
95
+ - name : Set up Docker Buildx
96
+ uses : docker/setup-buildx-action@v3
97
+ - name : Login to Docker Hub
98
+ uses : docker/login-action@v3
99
+ with :
100
+ username : ${{secrets.DOCKER_USERNAME}}
101
+ password : ${{secrets.DOCKER_PASSWORD}}
102
+ - name : Build Docker image and push
103
+ id : docker_build
104
+ uses : docker/build-push-action@v5
105
+ with :
106
+ context : .
107
+ push : true
108
+ tags : dmtf/redfish-tacklebox:${{github.event.inputs.version}},dmtf/redfish-tacklebox:latest
109
+ platforms : linux/arm64,linux/amd64
110
+ - name : Image digest
111
+ run : echo ${{steps.docker_build.outputs.digest}}
You can’t perform that action at this time.
0 commit comments