Skip to content

Commit

Permalink
Merge pull request #1 from microsoft/km/add_action
Browse files Browse the repository at this point in the history
Km/add action
  • Loading branch information
KevinDMack authored Jun 11, 2024
2 parents 1c82238 + a54cc8e commit 0a72342
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/coresvc-switchboard-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: coresvc-switchboard-build

on:
workflow_dispatch:
push:
branches:
- main

jobs:
build-coresvc-switchboard-amd64:
permissions:
contents: read
packages: write

uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/coresvc-build.yaml@main
with:
REGISTRY: ghcr.io
APP_NAME: coresvc-switchboard
ANNOTATION: azure-orbital-space-sdk-coresvc-switchboard.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-coresvc-switchboard-arm64:
permissions:
contents: read
packages: write

uses: microsoft/azure-orbital-space-sdk-github-actions/.github/workflows/coresvc-build.yaml@main
with:
REGISTRY: ghcr.io
APP_NAME: coresvc-switchboard
ANNOTATION: azure-orbital-space-sdk-coresvc-switchboard.yaml
WORKFLOW_AGENT: ubuntu-latest
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 }}

0 comments on commit 0a72342

Please sign in to comment.