Skip to content

Commit

Permalink
Test OIDC creds
Browse files Browse the repository at this point in the history
  • Loading branch information
Onokaev committed Jan 8, 2025
1 parent d4d5949 commit 4c638fe
Showing 1 changed file with 20 additions and 14 deletions.
34 changes: 20 additions & 14 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Publish Docker image
on:
workflow_dispatch:
push:
branches: [master, vnext]
paths: ['src/Microsoft.OpenApi.Hidi/**', '.github/workflows/**']
branches: [task/update-container-reference]
paths: ["src/Microsoft.OpenApi.Hidi/**", ".github/workflows/**"]
env:
REGISTRY: msgraphprod.azurecr.io
IMAGE_NAME: public/openapi/hidi
Expand All @@ -16,27 +16,33 @@ jobs:
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Login to GitHub package feed
uses: docker/[email protected]
# - name: Login to GitHub package feed
# uses: docker/[email protected]
# with:
# username: ${{ secrets.ACR_USERNAME }}
# password: ${{ secrets.ACR_PASSWORD }}
# registry: ${{ env.REGISTRY }}
- name: "Az CLI login"
uses: azure/login@v1
with:
username: ${{ secrets.ACR_USERNAME }}
password: ${{ secrets.ACR_PASSWORD }}
registry: ${{ env.REGISTRY }}
client-id: "64721008-1da6-49ea-a3d2-6beec11d9c65"
tenant-id: "cdc5aeea-15c5-4db6-b079-fcadd2505dc2"
subscription-id: "64721008-1da6-49ea-a3d2-6beec11d9c65"
- run: |
$content = [XML](Get-Content ./src/Microsoft.OpenApi.Hidi/Microsoft.OpenApi.Hidi.csproj)
$version = $content.Project.PropertyGroup.Version
echo "::set-output name=version::${version}"
shell: pwsh
id: getversion
- name: Push to GitHub Packages - Nightly
if: ${{ github.ref == 'refs/heads/vnext' }}
if: ${{ github.ref == 'refs/heads/task/update-container-reference' }}
uses: docker/[email protected]
with:
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:nightly
- name: Push to GitHub Packages - Release
if: ${{ github.ref == 'refs/heads/master' }}
uses: docker/[email protected]
with:
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest,${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.getversion.outputs.version }}
# - name: Push to GitHub Packages - Release
# if: ${{ github.ref == 'refs/heads/task/update-container-reference' }}
# uses: docker/[email protected]
# with:
# push: true
# tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest,${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.getversion.outputs.version }}

0 comments on commit 4c638fe

Please sign in to comment.