aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-12-29 12:12:07 -0800
committerChris Lu <chris.lu@gmail.com>2020-12-29 12:12:07 -0800
commit66ebc7c98fefd6803e9fc23bb7ad6beb18d9a088 (patch)
tree7d13a5bb3171d36b23801d730069997b73de9e8e
parentadef4ddc879dc01f2cffe86d0901f14adb36fd72 (diff)
downloadseaweedfs-66ebc7c98fefd6803e9fc23bb7ad6beb18d9a088.tar.xz
seaweedfs-66ebc7c98fefd6803e9fc23bb7ad6beb18d9a088.zip
adjust actions
-rw-r--r--.github/workflows/cleanup.yml22
-rw-r--r--.github/workflows/release.yml10
2 files changed, 25 insertions, 7 deletions
diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml
new file mode 100644
index 000000000..6c27689af
--- /dev/null
+++ b/.github/workflows/cleanup.yml
@@ -0,0 +1,22 @@
+name: Release
+
+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-*
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 39108c30a..c4aa4e6b7 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -24,14 +24,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}