File tree 1 file changed +11
-8
lines changed
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 7
7
docker :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- -
11
- name : Set up QEMU
10
+ - name : checkout
11
+ uses : actions/checkout@v3
12
+ with :
13
+ fetch-depth : 0
14
+ - name : recovery tag information
15
+ run : git fetch origin --depth=1 +refs/tags/*:refs/tags/*
16
+ - name : set up qemu
12
17
uses : docker/setup-qemu-action@v3
13
- -
14
- name : Set up Docker Buildx
18
+ - name : set up docker buildx
15
19
uses : docker/setup-buildx-action@v3
16
- -
17
- name : Login to Docker Hub
20
+ - name : login to docker hub
18
21
uses : docker/login-action@v3
19
22
with :
20
23
username : ${{ secrets.DOCKERHUB_USERNAME }}
21
24
password : ${{ secrets.DOCKERHUB_TOKEN }}
22
- -
23
- name : Build and push
25
+ - name : build and push
24
26
uses : docker/build-push-action@v6
25
27
with :
28
+ context : .
26
29
push : true
27
30
tags : ${{ secrets.DOCKERHUB_USERNAME }}/tnsp:latest
You can’t perform that action at this time.
0 commit comments