diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index d5c6731..05ad272 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -37,9 +37,12 @@ jobs: uses: actions/upload-artifact@v3 with: path: build.zip - name: build-linux64.zip + name: build.zip retention-days: 30 overwrite: true + - name: Get current date + id: date + run: echo "date=$(echo $(date +'%Y-%m-%d'))" >> $GITHUB_OUTPUT - name: Release if: github.ref_name == 'master' uses: akkuman/gitea-release-action@v1 @@ -47,5 +50,5 @@ jobs: with: tag_name: release-${{ steps.date.outputs.date }} files: |- - build-linux64.zip + build.zip