@@ -10,12 +10,13 @@ concurrency:
10
10
11
11
jobs :
12
12
nightly-binary :
13
- runs-on : actuated-4cpu-16gb
13
+ runs-on : ubuntu-latest
14
14
steps :
15
15
- uses : actions/checkout@v4
16
16
# fetch all commits instead of only the last as some branches are long lived and could have many between versions
17
17
# fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567
18
18
- run : git fetch --unshallow --quiet --tags --force
19
+ - uses : ./.github/workflows/disk-clean.yml
19
20
- uses : actions/setup-go@v4
20
21
with :
21
22
go-version : " ~1.21"
@@ -56,12 +57,13 @@ jobs:
56
57
SOURCE_DIR : dist/release
57
58
DEST_DIR : gitea/${{ steps.clean_name.outputs.branch }}
58
59
nightly-docker-rootful :
59
- runs-on : actuated-4cpu-16gb
60
+ runs-on : ubuntu-latest
60
61
steps :
61
62
- uses : actions/checkout@v4
62
63
# fetch all commits instead of only the last as some branches are long lived and could have many between versions
63
64
# fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567
64
65
- run : git fetch --unshallow --quiet --tags --force
66
+ - uses : ./.github/workflows/disk-clean.yml
65
67
- uses : actions/setup-go@v4
66
68
with :
67
69
go-version : " ~1.21"
@@ -93,12 +95,13 @@ jobs:
93
95
push : true
94
96
tags : gitea/gitea:${{ steps.clean_name.outputs.branch }}
95
97
nightly-docker-rootless :
96
- runs-on : actuated-4cpu-16gb
98
+ runs-on : ubuntu-latest
97
99
steps :
98
100
- uses : actions/checkout@v4
99
101
# fetch all commits instead of only the last as some branches are long lived and could have many between versions
100
102
# fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567
101
103
- run : git fetch --unshallow --quiet --tags --force
104
+ - uses : ./.github/workflows/disk-clean.yml
102
105
- uses : actions/setup-go@v4
103
106
with :
104
107
go-version : " ~1.21"
0 commit comments