|
|
@ -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} |
|
|
|
|
|
|
|