mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-11 16:27:18 +10:00
wip: use correct signpath configuration [skip ci]
This commit is contained in:
15
.github/workflows/insider-windows.yml
vendored
15
.github/workflows/insider-windows.yml
vendored
@@ -100,23 +100,26 @@ jobs:
|
|||||||
run: ./prepare_assets.sh
|
run: ./prepare_assets.sh
|
||||||
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
|
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
|
||||||
|
|
||||||
- name: Upload unsigned user artifact
|
- name: Upload unsigned artifacts
|
||||||
id: upload-unsigned-user-artifact
|
id: upload-unsigned-artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: unsigned-user-${{ matrix.vscode_arch }}
|
name: unsigned-${{ matrix.vscode_arch }}
|
||||||
path: assets/VSCodiumUserSetup-*.exe
|
path: |
|
||||||
|
assets/*.exe
|
||||||
|
assets/*.msi
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
|
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
|
||||||
|
|
||||||
- name: Signing user
|
- name: Signing
|
||||||
uses: signpath/github-action-submit-signing-request@v1
|
uses: signpath/github-action-submit-signing-request@v1
|
||||||
with:
|
with:
|
||||||
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
||||||
organization-id: '${{ secrets.SIGNPATH_ORGANIZATION_ID }}'
|
organization-id: '${{ secrets.SIGNPATH_ORGANIZATION_ID }}'
|
||||||
project-slug: '${{ secrets.SIGNPATH_PROJECT_SLUG }}'
|
project-slug: '${{ secrets.SIGNPATH_PROJECT_SLUG }}'
|
||||||
signing-policy-slug: '${{ secrets.SIGNPATH_POLICY_SLUG }}'
|
signing-policy-slug: '${{ secrets.SIGNPATH_POLICY_SLUG }}'
|
||||||
github-artifact-id: '${{ steps.upload-unsigned-user-artifact.outputs.artifact-id }}'
|
github-artifact-id: '${{ steps.upload-unsigned-artifacts.outputs.artifact-id }}'
|
||||||
|
artifact-configuration-slug: '${{ matrix.vscode_arch }}'
|
||||||
wait-for-completion: true
|
wait-for-completion: true
|
||||||
output-artifact-directory: assets/
|
output-artifact-directory: assets/
|
||||||
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
|
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
|
||||||
|
|||||||
Reference in New Issue
Block a user