Skip to content

Commit

Permalink
Release fix for nuget and arm64 typo (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
AsakerMohd authored Sep 3, 2024
1 parent 0936607 commit b9ff653
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ jobs:
- name: Create multi-platform image and push to Amazon public ECR
run: |
docker manifest create ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }} ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }}-amd64 ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }}-arm46 ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }}-windows2019 ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }}-windows2022
docker manifest create ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }} ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }}-amd64 ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }}-arm64 ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }}-windows2019 ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }}-windows2022
docker manifest inspect ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }}
docker manifest push ${{ env.RELEASE_PUBLIC_REPOSITORY }}:v${{ github.event.inputs.version }}
Expand All @@ -315,13 +315,12 @@ jobs:
uses: actions/checkout@v2

- name: Install dependencies
run: dotnet restore .\src\AWS.Distro.OpenTelemetry.AutoInstrumentation
run: dotnet restore .\src\AWS.Distro.OpenTelemetry.AutoInstrumentation /p:_IsPacking=true

- name: Build solution
run: >
dotnet build .\src\AWS.Distro.OpenTelemetry.AutoInstrumentation
/p:Configuration=Release
/p:_IsPacking=true
--no-restore
- name: Assume signer role
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/unlist_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
description: The version of the Distro to Unlist, e.g., 1.2.0
required: true

env:
AWS_SIGNING_KEY_REGION: us-west-2

permissions:
id-token: write
contents: write
Expand Down

0 comments on commit b9ff653

Please sign in to comment.