Skip to content

Commit

Permalink
fix: or-2282 artifact could not be found
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Lesage authored and janlesage committed Jul 25, 2024
1 parent ca81890 commit 11c08be
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Upload artifact
if: inputs.semver != 'none'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.image-name }}
path: ~/${{ inputs.image-file }}
path: ~/
4 changes: 2 additions & 2 deletions .github/workflows/build-site-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Upload artifact
if: inputs.semver != 'none'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.image-name }}
path: ~/${{ inputs.image-file }}
path: ~/
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ jobs:
push_images_to_staging:
if: needs.release.outputs.version != 'none'
needs: [ release ]
name: Push images
name: Push images to Staging
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -404,7 +404,7 @@ jobs:
push_images_to_production:
if: needs.release.outputs.version != 'none'
needs: [ release ]
name: Push images
name: Push images to Production
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -458,7 +458,7 @@ jobs:
push_images_to_devops:
if: needs.release.outputs.version != 'none'
needs: [ release ]
name: Push images
name: Push images to DevOps
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -547,6 +547,8 @@ jobs:
echo Status: ${{ steps.awscurl-polling-action.outputs.status }}
echo ${{ steps.awscurl-polling-action.outputs.final-message }}
deploy_staging_new:
if: needs.release.outputs.version != 'none'
needs: [ push_images_to_devops ]
Expand Down Expand Up @@ -586,6 +588,7 @@ jobs:
echo Status: ${{ steps.awscurl-polling-action.outputs.status }}
echo ${{ steps.awscurl-polling-action.outputs.final-message }}
# - name: Publish to NuGet
# shell: bash
# run: |
Expand Down

0 comments on commit 11c08be

Please sign in to comment.