develop
Myk Taylor 2023-07-31 05:37:57 -07:00
parent 656683e001
commit 9b8bd8dbf7
No known key found for this signature in database
4 changed files with 7 additions and 7 deletions

@ -1,4 +1,4 @@
name: build-linux
name: Build linux64
on:
workflow_call:

@ -1,4 +1,4 @@
name: build-windows
name: Build win64
on:
workflow_call:

@ -19,7 +19,7 @@ jobs:
BRANCH="refs/pull/${{ github.event.pull_request.number }}/merge"
echo "Fetching list of cache keys"
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH | cut -f 1)
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH -L 100 | cut -f 1)
set +e
echo "Deleting caches..."

@ -1,4 +1,4 @@
name: Releases
name: Deploy to GitHub
on:
push:
@ -12,7 +12,7 @@ on:
jobs:
package-win64:
name: Windows release
name: Build win64 release
uses: ./.github/workflows/build-windows.yml
with:
artifact-name: win64-release
@ -25,7 +25,7 @@ jobs:
secrets: inherit
package-linux64:
name: Linux release
name: Build linux64 release
uses: ./.github/workflows/build-linux.yml
with:
artifact-name: linux64-release
@ -37,7 +37,7 @@ jobs:
secrets: inherit
create-update-release:
name: GitHub release
name: Draft GitHub release
needs:
- package-win64
- package-linux64