-
Notifications
You must be signed in to change notification settings - Fork 7
ci: Adjust target branch #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
38bfc52
1a75af6
2aa9a5c
ceb0247
da04b50
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,11 +3,11 @@ name: CI | |||||
| on: | ||||||
| push: | ||||||
| branches: | ||||||
| - main | ||||||
| - uno | ||||||
| - release/*/* | ||||||
| pull_request: | ||||||
| branches: | ||||||
| - main | ||||||
| - uno | ||||||
| - release/*/* | ||||||
| workflow_dispatch: | ||||||
|
|
||||||
|
|
@@ -18,16 +18,16 @@ env: | |||||
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | ||||||
| DOTNET_NOLOGO: 1 | ||||||
| NUGET_XMLDOC_MODE: skip | ||||||
| ARTIFACTS_DIR: artifacts | ||||||
| ARTIFACTS_DIR: ${{ github.workspace }}/artifacts | ||||||
|
|
||||||
jeromelaban marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| # Required secrets: | ||||||
| # SIGN_AZURE_CLIENT_ID | ||||||
| # SIGN_AZURE_TENANT_ID | ||||||
| # SIGN_AZURE_SUBSCRIPTION_ID | ||||||
| # SIGN_KEY_VAULT_URL | ||||||
| # SIGN_KEY_VAULT_CERTIFICATE_ID | ||||||
| # UNO_NUGET_FEED_API_KEY | ||||||
| # NUGET_ORG_API_KEY | ||||||
| # Required secrets for signing and publishing jobs: | ||||||
| # - SIGN_AZURE_CLIENT_ID: Azure client ID for code signing | ||||||
| # - SIGN_AZURE_TENANT_ID: Azure tenant ID for code signing | ||||||
| # - SIGN_AZURE_SUBSCRIPTION_ID: Azure subscription ID for code signing | ||||||
| # - SIGN_KEY_VAULT_URL: Azure Key Vault URL for code signing | ||||||
| # - SIGN_KEY_VAULT_CERTIFICATE_ID: Key Vault certificate ID for code signing | ||||||
| # - UNO_NUGET_FEED_API_KEY: API key for Uno NuGet feed publishing | ||||||
| # - NUGET_ORG_API_KEY: API key for NuGet.org publishing | ||||||
|
|
||||||
| jobs: | ||||||
| build: | ||||||
|
|
@@ -63,33 +63,33 @@ jobs: | |||||
|
|
||||||
| - name: Prepare artifacts directory | ||||||
| run: | | ||||||
| rm -rf "$ARTIFACTS_DIR" | ||||||
| mkdir -p "$ARTIFACTS_DIR/log" | ||||||
| rm -rf "${{ env.ARTIFACTS_DIR }}" | ||||||
| mkdir -p "${{ env.ARTIFACTS_DIR }}/log" | ||||||
| - name: Build solution | ||||||
| run: dotnet build MonacoEditorComponent.slnx -c Release -p:ArtifactsPath="$ARTIFACTS_DIR" /bl:"$ARTIFACTS_DIR/log/build.binlog" | ||||||
| run: dotnet build MonacoEditorComponent.slnx -c Release -p:ArtifactsPath="${{ env.ARTIFACTS_DIR }}" /bl:"${{ env.ARTIFACTS_DIR }}/log/build.binlog" | ||||||
|
||||||
| run: dotnet build MonacoEditorComponent.slnx -c Release -p:ArtifactsPath="${{ env.ARTIFACTS_DIR }}" /bl:"${{ env.ARTIFACTS_DIR }}/log/build.binlog" | |
| run: dotnet build MonacoEditorComponent.slnx -c Release -p:ArtifactsPath=${{ env.ARTIFACTS_DIR }} /bl:${{ env.ARTIFACTS_DIR }}/log/build.binlog |
Uh oh!
There was an error while loading. Please reload this page.