Skip to content

Commit ef2547b

Browse files
committed
Add upload step
1 parent 8758441 commit ef2547b

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
types: [created]
1616

1717
jobs:
18-
build:
18+
release:
1919
runs-on: code-signing
2020
environment: signed_release
2121
steps:
@@ -48,11 +48,13 @@ jobs:
4848
DIGICERT_TOKEN_PASSWORD: ${{ secrets.DIGICERT_TOKEN_PASSWORD }}
4949
DIGICERT_KEY_ALIAS: ${{ secrets.DIGICERT_KEY_ALIAS }}
5050
DIGICERT_TOKEN_CFG_PATH: ${{ secrets.DIGICERT_TOKEN_CFG_PATH }}
51-
run: |
52-
echo $env:DIGICERT_TOKEN_CFG_PATH
53-
echo "$DIGICERT_TOKEN_CFG_PATH"
51+
run: .\sign.ps1"
5452

55-
#echo %DIGICERT_TOKEN_CFG_PATH% && PowerShell -Command "Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process; .\sign.ps1"
53+
- name: Upload ${{ inputs.signed_binary_name }}
54+
uses: actions/upload-artifact@v4
55+
with:
56+
name: ${{ inputs.signed_binary_name }}
57+
path: ${{ inputs.signed_binary_name }}
5658

5759
- name: Upload to release
5860
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)