-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 }} |