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: on:
workflow_call: workflow_call:

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

@ -19,7 +19,7 @@ jobs:
BRANCH="refs/pull/${{ github.event.pull_request.number }}/merge" BRANCH="refs/pull/${{ github.event.pull_request.number }}/merge"
echo "Fetching list of cache keys" 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 set +e
echo "Deleting caches..." echo "Deleting caches..."

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