Skip to content

Commit

Permalink
Update release.yaml
Browse files Browse the repository at this point in the history
Changing to ** to get build subdirectories.
  • Loading branch information
joshreve authored Aug 4, 2021
1 parent 82864de commit b8cb2d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ on:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 120
timeout-minutes: 180
name: "Build artifacts and publish Release"
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: satackey/[email protected]
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 }}

0 comments on commit b8cb2d9

Please sign in to comment.