Skip to content

Commit

Permalink
fixed build names
Browse files Browse the repository at this point in the history
  • Loading branch information
alianides committed Jul 3, 2024
1 parent befadc1 commit 9c21b93
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/spacefx-client-dotnet-build.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: sdk-dotnet-build
name: spacefx-client-dotnet-build

on:
workflow_dispatch:
Expand All @@ -10,7 +10,7 @@ jobs:
contents: read
packages: write

uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/python-app-build.yml@main
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/service-build.yml@main
with:
APP_PROJECT: ./src/spacesdk-client.csproj
NUGET_PROJECT: ./src/spacesdk-client.csproj
Expand All @@ -30,7 +30,7 @@ jobs:
contents: read
packages: write

uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/python-app-build.yml@main
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/service-build.yml@main
with:
APP_PROJECT: ./src/spacesdk-client.csproj
NUGET_PROJECT: ./src/spacesdk-client.csproj
Expand Down
46 changes: 46 additions & 0 deletions .github/workflows/spacefx-client-python-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: spacfx-client-python-build

on:
workflow_dispatch:
push:

jobs:
build-sdk-dotnet-amd64:
permissions:
contents: read
packages: write

uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/python-app-build.yml@main
with:
APP_PROJECT: ./src/spacesdk-client.csproj
NUGET_PROJECT: ./src/spacesdk-client.csproj
OUTPUT_DIR: /var/spacedev/tmp/spacesdk-client
NUGET_STAGING_DIRECTORY: /var/spacedev/nuget/spacesdk-client
NUGET_FILE_PREFIX: Microsoft.Azure.SpaceSDK.Client
ANNOTATION: azure-orbital-space-sdk-sdk-client.yaml
WORKFLOW_AGENT: ubuntu-latest
ARCHITECTURE: amd64
secrets:
GIT_HUB_USER_NAME: ${{ secrets.GIT_HUB_USER_NAME }}
GIT_HUB_USER_TOKEN: ${{ secrets.GIT_HUB_USER_TOKEN }}
SETUP_REPO_URL: ${{ secrets.SETUP_REPO_URL }}

build-sdk-dotnet-arm64:
permissions:
contents: read
packages: write

uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/python-app-build.yml@main
with:
APP_PROJECT: ./src/spacesdk-client.csproj
NUGET_PROJECT: ./src/spacesdk-client.csproj
OUTPUT_DIR: /var/spacedev/tmp/spacesdk-client
NUGET_STAGING_DIRECTORY: /var/spacedev/nuget/spacesdk-client
NUGET_FILE_PREFIX: Microsoft.Azure.SpaceSDK.Client
ANNOTATION: azure-orbital-space-sdk-sdk-client.yaml
WORKFLOW_AGENT: ubuntu-latest
ARCHITECTURE: ard64
secrets:
GIT_HUB_USER_NAME: ${{ secrets.GIT_HUB_USER_NAME }}
GIT_HUB_USER_TOKEN: ${{ secrets.GIT_HUB_USER_TOKEN }}
SETUP_REPO_URL: ${{ secrets.SETUP_REPO_URL }}

0 comments on commit 9c21b93

Please sign in to comment.