File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Cloak Docker
2+
3+ on :
4+ workflow_dispatch :
5+
6+ jobs :
7+ docker :
8+ runs-on : ubuntu-latest
9+ permissions : {}
10+
11+ steps :
12+ - name : Checkout
13+ uses : actions/checkout@v4
14+ with :
15+ persist-credentials : false
16+
17+ - name : Log in to Docker Hub
18+ uses : docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
19+ with :
20+ username : ${{ secrets.DOCKERHUB_USERNAME }}
21+ password : ${{ secrets.DOCKERHUB_TOKEN }}
22+
23+ - name : Extract commit digest
24+ id : vars
25+ run : echo "sha8=${GITHUB_SHA::8}" >> $GITHUB_OUTPUT
26+
27+ - name : Build and Push Docker image
28+ uses : docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
29+ with :
30+ context : .
31+ platforms : linux/amd64
32+ push : true
33+ tags : scrolltech/cloak-l2geth:${{ steps.vars.outputs.sha8 }}
You can’t perform that action at this time.
0 commit comments