diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-09-06 18:39:29 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-09-06 18:39:29 -0700 |
| commit | 64971b0d7e70980b36d5e33e2c29ca631e1e9c3e (patch) | |
| tree | 639ca7e20cbef0eb1e5d8d84503d624f2664ae1f | |
| parent | 68b23114b901cc8883fe59a7bb884c78adc77c4a (diff) | |
| download | seaweedfs-64971b0d7e70980b36d5e33e2c29ca631e1e9c3e.tar.xz seaweedfs-64971b0d7e70980b36d5e33e2c29ca631e1e9c3e.zip | |
merge into one action
| -rw-r--r-- | .github/workflows/binaries_dev.yml | 20 | ||||
| -rw-r--r-- | .github/workflows/cleanup.yml | 22 |
2 files changed, 15 insertions, 27 deletions
diff --git a/.github/workflows/binaries_dev.yml b/.github/workflows/binaries_dev.yml index e6288ea89..5d6519b18 100644 --- a/.github/workflows/binaries_dev.yml +++ b/.github/workflows/binaries_dev.yml @@ -6,6 +6,21 @@ on: jobs: + cleanup: + 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-* + build: name: Build runs-on: ubuntu-latest @@ -28,11 +43,6 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 - - name: Wait for the deletion - uses: jakejarvis/wait-action@master - with: - time: '60s' - - 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 deleted file mode 100644 index 34e3a481b..000000000 --- a/.github/workflows/cleanup.yml +++ /dev/null @@ -1,22 +0,0 @@ -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-* |
