-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (43 loc) · 1.75 KB
/
platform-deployment-build-publish.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: platform-deployment-build
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build-platform-deployment-amd64:
permissions:
contents: read
packages: write
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/service-build.yml@main
with:
APP_PROJECT: ./src/platform-deployment.csproj
NUGET_PROJECT: ./src_pluginBase/pluginBase.csproj
OUTPUT_DIR: /var/spacedev/tmp/platform-deployment
NUGET_STAGING_DIRECTORY: /var/spacedev/nuget/deployment
NUGET_FILE_PREFIX: Microsoft.Azure.SpaceSDK.PlatformServices.Deployment.Plugins
ANNOTATION: azure-orbital-space-sdk-platform-deployment.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-platform-deployment-arm64:
permissions:
contents: read
packages: write
uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/service-build.yml@main
with:
APP_PROJECT: ./src/platform-deployment.csproj
NUGET_PROJECT: ./src_pluginBase/pluginBase.csproj
OUTPUT_DIR: /var/spacedev/tmp/platform-deployment
NUGET_STAGING_DIRECTORY: /var/spacedev/nuget/deployment
NUGET_FILE_PREFIX: Microsoft.Azure.SpaceSDK.PlatformServices.Deployment.Plugins
ANNOTATION: azure-orbital-space-sdk-platform-deployment.yaml
WORKFLOW_AGENT: spacesdk-ubuntu-2204LTS-arm64
ARCHITECTURE: arm64
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 }}