-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #525 from DefangLabs/lio-fix-generate
fix regressions in generate
- Loading branch information
Showing
3 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,6 +119,7 @@ jobs: | |
|
||
build-and-sign: | ||
name: Build app and sign files (with Trusted Signing) | ||
if: startsWith(github.ref, 'refs/tags/v') # only run this step on tagged commits | ||
environment: release # must use environment to be able to authenticate with Azure Federated Identity for Trusted Signing | ||
needs: go-test | ||
runs-on: windows-latest | ||
|
@@ -169,6 +170,7 @@ jobs: | |
client-id: ${{ secrets.AZURE_CLIENT_ID }} | ||
tenant-id: ${{ secrets.AZURE_TENANT_ID }} | ||
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | ||
|
||
- name: Trusted Signing | ||
uses: Azure/[email protected] | ||
if: startsWith(github.ref, 'refs/tags/v') # only run this step on tagged commits | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters