mirror of
https://github.com/apple/pkl.git
synced 2026-08-27 06:04:03 +02:00
Fix deploy build (#1798)
* Fix issue where the DeployJob and GithubRelease jobs download artifacts using a glob that only matches one artifact * Make NativeImageBuild task only produce outputs as declared by build; ensure there's no build_artifacts.txt, sources/ dir, etc.
This commit is contained in:
Generated
+15
-15
@@ -126,7 +126,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-pkl-cli-linux-amd64
|
||||
name: deploy-artifacts-pkl-cli-linux-amd64
|
||||
path: pkl-cli*/build/executable/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -178,7 +178,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-pkl-cli-linux-aarch64
|
||||
name: deploy-artifacts-pkl-cli-linux-aarch64
|
||||
path: pkl-cli*/build/executable/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -228,7 +228,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-pkl-cli-macOS-aarch64
|
||||
name: deploy-artifacts-pkl-cli-macOS-aarch64
|
||||
path: pkl-cli*/build/executable/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -347,7 +347,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-pkl-cli-alpine-linux-amd64
|
||||
name: deploy-artifacts-pkl-cli-alpine-linux-amd64
|
||||
path: pkl-cli*/build/executable/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -394,7 +394,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-pkl-cli-windows-amd64
|
||||
name: deploy-artifacts-pkl-cli-windows-amd64
|
||||
path: pkl-cli*/build/executable/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -444,7 +444,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-pkl-doc-linux-amd64
|
||||
name: deploy-artifacts-pkl-doc-linux-amd64
|
||||
path: pkl-doc*/build/executable/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -496,7 +496,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-pkl-doc-linux-aarch64
|
||||
name: deploy-artifacts-pkl-doc-linux-aarch64
|
||||
path: pkl-doc*/build/executable/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -546,7 +546,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-pkl-doc-macOS-aarch64
|
||||
name: deploy-artifacts-pkl-doc-macOS-aarch64
|
||||
path: pkl-doc*/build/executable/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -665,7 +665,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-pkl-doc-alpine-linux-amd64
|
||||
name: deploy-artifacts-pkl-doc-alpine-linux-amd64
|
||||
path: pkl-doc*/build/executable/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -712,7 +712,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-pkl-doc-windows-amd64
|
||||
name: deploy-artifacts-pkl-doc-windows-amd64
|
||||
path: pkl-doc*/build/executable/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -762,7 +762,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-libpkl-linux-amd64
|
||||
name: deploy-artifacts-libpkl-linux-amd64
|
||||
path: libpkl/build/native-libs/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -814,7 +814,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-libpkl-linux-aarch64
|
||||
name: deploy-artifacts-libpkl-linux-aarch64
|
||||
path: libpkl/build/native-libs/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -864,7 +864,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-libpkl-macOS-aarch64
|
||||
name: deploy-artifacts-libpkl-macOS-aarch64
|
||||
path: libpkl*/build/executable/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -983,7 +983,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-libpkl-alpine-linux-amd64
|
||||
name: deploy-artifacts-libpkl-alpine-linux-amd64
|
||||
path: libpkl*/build/distributions/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
@@ -1032,7 +1032,7 @@ jobs:
|
||||
- name: Upload built artifacts
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
||||
with:
|
||||
name: artifacts-libpkl-windows-amd64
|
||||
name: deploy-artifacts-libpkl-windows-amd64
|
||||
path: libpkl*/build/distributions/**/*
|
||||
- name: Upload Test Result XML
|
||||
if: '!cancelled()'
|
||||
|
||||
Reference in New Issue
Block a user