File tree Expand file tree Collapse file tree 2 files changed +2
-20
lines changed Expand file tree Collapse file tree 2 files changed +2
-20
lines changed Original file line number Diff line number Diff line change @@ -11,19 +11,13 @@ jobs:
11
11
runs-on : ubuntu-latest-32
12
12
13
13
steps :
14
- - name : Check Disk Space Before Build
15
- run : df -h
16
-
17
- - name : Docker Prune
18
- run : docker system prune -af
19
-
20
14
- name : Checkout code
21
15
uses : actions/checkout@v2
22
16
with :
23
17
ref : main # checkout the main branch to build nightly
24
18
25
19
- name : Set up Docker Buildx
26
- uses : docker/setup-buildx-action@v1
20
+ uses : docker/setup-buildx-action@v3
27
21
28
22
- name : Login to DockerHub
29
23
uses : docker/login-action@v1
43
37
cache-to : type=gha,mode=max
44
38
build-args : |
45
39
ENGINE_VERSION=nightly
46
-
47
- - name : Check Disk Space After Build
48
- run : df -h
Original file line number Diff line number Diff line change @@ -12,20 +12,14 @@ jobs:
12
12
LATEST_TAG : ${{ (github.event.release.target_commitish == 'main') && 'thirdweb/engine:latest' || '' }}
13
13
14
14
steps :
15
- - name : Check Disk Space Before Build
16
- run : df -h
17
-
18
- - name : Docker Prune
19
- run : docker system prune -af
20
-
21
15
- name : Checkout code
22
16
uses : actions/checkout@v2
23
17
with :
24
18
# Fetches the branch at which the release was made
25
19
ref : ${{ github.event.release.target_commitish }}
26
20
27
21
- name : Set up Docker Buildx
28
- uses : docker/setup-buildx-action@v1
22
+ uses : docker/setup-buildx-action@v3
29
23
30
24
- name : Login to DockerHub
31
25
uses : docker/login-action@v1
47
41
${{ env.LATEST_TAG }}
48
42
build-args : |
49
43
ENGINE_VERSION=${{ github.event.release.tag_name }}
50
-
51
- - name : Check Disk Space After Build
52
- run : df -h
You can’t perform that action at this time.
0 commit comments