diff options
-rw-r--r-- | .github/workflows/release.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3c91666..e1befef 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -9,7 +9,7 @@ on: jobs: build: runs-on: ubuntu-latest - timeout-minutes: 120 + timeout-minutes: 180 name: "Build artifacts and publish Release" steps: - name: Checkout @@ -17,14 +17,14 @@ jobs: - uses: satackey/action-docker-layer-caching@v0.0.11 continue-on-error: true - name: Clean up - run: rm -r things/* + run: rm -r things/** - name: Build run: make build - name: Release uses: softprops/action-gh-release@v1 with: draft: false - files: things/* + files: things/** tag_name: v${{ github.run_number }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |