@@ -10,12 +10,13 @@ concurrency:
1010
1111jobs :
1212 nightly-binary :
13- runs-on : actuated-4cpu-16gb
13+ runs-on : ubuntu-latest
1414 steps :
1515 - uses : actions/checkout@v4
1616 # fetch all commits instead of only the last as some branches are long lived and could have many between versions
1717 # fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567
1818 - run : git fetch --unshallow --quiet --tags --force
19+ - uses : ./.github/workflows/disk-clean.yml
1920 - uses : actions/setup-go@v4
2021 with :
2122 go-version : " ~1.21"
@@ -56,12 +57,13 @@ jobs:
5657 SOURCE_DIR : dist/release
5758 DEST_DIR : gitea/${{ steps.clean_name.outputs.branch }}
5859 nightly-docker-rootful :
59- runs-on : actuated-4cpu-16gb
60+ runs-on : ubuntu-latest
6061 steps :
6162 - uses : actions/checkout@v4
6263 # fetch all commits instead of only the last as some branches are long lived and could have many between versions
6364 # fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567
6465 - run : git fetch --unshallow --quiet --tags --force
66+ - uses : ./.github/workflows/disk-clean.yml
6567 - uses : actions/setup-go@v4
6668 with :
6769 go-version : " ~1.21"
@@ -93,12 +95,13 @@ jobs:
9395 push : true
9496 tags : gitea/gitea:${{ steps.clean_name.outputs.branch }}
9597 nightly-docker-rootless :
96- runs-on : actuated-4cpu-16gb
98+ runs-on : ubuntu-latest
9799 steps :
98100 - uses : actions/checkout@v4
99101 # fetch all commits instead of only the last as some branches are long lived and could have many between versions
100102 # fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567
101103 - run : git fetch --unshallow --quiet --tags --force
104+ - uses : ./.github/workflows/disk-clean.yml
102105 - uses : actions/setup-go@v4
103106 with :
104107 go-version : " ~1.21"
0 commit comments