Skip to content

Commit

Permalink
feat: add first workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
opadalin committed Jun 28, 2024
1 parent b206732 commit 3498992
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/message-service.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: MessageService

on:
workflow_dispatch:
push:
branches:
- main

jobs:
login:
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write

steps:
- name: Checkout repostory
uses: actions/checkout@v4

- name: Azure Login using OIDC authentication
uses: azure/login@v1
with:
tenant-id: ${{ secrets.OP_TENANT_ID }}
subscription-id: ${{ secrets.OPLAB_SUBSCRIPTION_ID }}
client-id: ${{ secrets.ZEROTRUSTAPP_DEV_CLIENT_ID }}

0 comments on commit 3498992

Please sign in to comment.