diff options
author | techknowlogick <techknowlogick@gitea.com> | 2023-10-06 15:22:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-06 15:22:10 -0400 |
commit | e820d9966d55db0c219a40450c6881ba48730070 (patch) | |
tree | 2f180ca48273bd0498f34ee9d9e3348ac3d1c3be /.github | |
parent | bab41dd3a34a51047c1c0545d01a75918a399142 (diff) | |
download | gitea-e820d9966d55db0c219a40450c6881ba48730070.tar.gz gitea-e820d9966d55db0c219a40450c6881ba48730070.zip |
move re-useable workflow
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release-nightly.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/release-nightly.yml b/.github/workflows/release-nightly.yml index 321b9626ce..9d1321194a 100644 --- a/.github/workflows/release-nightly.yml +++ b/.github/workflows/release-nightly.yml @@ -9,6 +9,8 @@ concurrency: cancel-in-progress: true jobs: + disk-clean: + uses: ./.github/workflows/disk-clean.yml nightly-binary: runs-on: ubuntu-latest steps: @@ -16,7 +18,6 @@ jobs: # fetch all commits instead of only the last as some branches are long lived and could have many between versions # fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567 - run: git fetch --unshallow --quiet --tags --force - - uses: ./.github/workflows/disk-clean.yml - uses: actions/setup-go@v4 with: go-version: "~1.21" @@ -63,7 +64,6 @@ jobs: # fetch all commits instead of only the last as some branches are long lived and could have many between versions # fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567 - run: git fetch --unshallow --quiet --tags --force - - uses: ./.github/workflows/disk-clean.yml - uses: actions/setup-go@v4 with: go-version: "~1.21" @@ -101,7 +101,6 @@ jobs: # fetch all commits instead of only the last as some branches are long lived and could have many between versions # fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567 - run: git fetch --unshallow --quiet --tags --force - - uses: ./.github/workflows/disk-clean.yml - uses: actions/setup-go@v4 with: go-version: "~1.21" |