summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJoshua Shreve <j.a.shreve@gmail.com>2021-08-03 20:36:25 -0400
committerGitHub <noreply@github.com>2021-08-03 20:36:25 -0400
commitb8cb2d942a6287a95e720278bbfe7563352ea48d (patch)
treea182b210f78f5d1dc844b60d65d5d78f4e3cda27 /.github
parent82864dee5f272e3625f40d02fe6277bd247fc44d (diff)
Update release.yaml
Changing to ** to get build subdirectories.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yaml6
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 }}