diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-09-06 18:37:20 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-09-06 18:37:20 -0700 |
| commit | 0c47437ece7718d3e77e5b5fc581db0376a44f69 (patch) | |
| tree | 35b723f9bc16b8c824316e13adaaae77fbf86493 | |
| parent | 9ec151fa0d6f3a1b583b6274d6c66bf26dcfd9b0 (diff) | |
| download | seaweedfs-0c47437ece7718d3e77e5b5fc581db0376a44f69.tar.xz seaweedfs-0c47437ece7718d3e77e5b5fc581db0376a44f69.zip | |
Revert "action: delete previous assets"
This reverts commit 9ec151fa0d6f3a1b583b6274d6c66bf26dcfd9b0.
| -rw-r--r-- | .github/workflows/binaries_dev.yml | 10 | ||||
| -rw-r--r-- | .github/workflows/cleanup.yml | 22 |
2 files changed, 25 insertions, 7 deletions
diff --git a/.github/workflows/binaries_dev.yml b/.github/workflows/binaries_dev.yml index 96ead8f1f..ac04a85dc 100644 --- a/.github/workflows/binaries_dev.yml +++ b/.github/workflows/binaries_dev.yml @@ -28,14 +28,10 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 - - name: Delete old release assets - uses: mknejp/delete-release-assets@v1 + - name: Wait for the deletion + uses: jakejarvis/wait-action@master with: - token: ${{ github.token }} - tag: dev - fail-if-no-assets: false - assets: | - weed-* + time: '30s' - name: Set BUILD_TIME env run: echo BUILD_TIME=$(date -u +%Y%m%d-%H%M) >> ${GITHUB_ENV} diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml new file mode 100644 index 000000000..34e3a481b --- /dev/null +++ b/.github/workflows/cleanup.yml @@ -0,0 +1,22 @@ +name: "chore: cleanup" + +on: + push: + branches: [ master ] + +jobs: + + build: + name: Build + runs-on: ubuntu-latest + + steps: + + - name: Delete old release assets + uses: mknejp/delete-release-assets@v1 + with: + token: ${{ github.token }} + tag: dev + fail-if-no-assets: false + assets: | + weed-* |
