Skip to content

Commit

Permalink
Revert artifact ID, use name?
Browse files Browse the repository at this point in the history
  • Loading branch information
mnadareski committed Feb 23, 2024
1 parent d6460a2 commit 6742901
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,16 @@ jobs:

- name: Upload build
uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: ${{ matrix.project }}_${{ matrix.framework }}_${{ matrix.runtime }}_${{ matrix.conf }}
path: ${{ matrix.project }}/bin/${{ matrix.conf }}/${{ matrix.framework }}/${{ matrix.runtime }}/publish/

- name: Upload to rolling
uses: ncipollo/release-action@v1
uses: ncipollo/release-action@v1.14.0
with:
allowUpdates: True
artifacts: ${{ steps.artifact-upload-step.outputs.artifact-id }}
generateReleaseNotes: true
artifacts: '*${{ matrix.project }}_${{ matrix.framework }}_${{ matrix.runtime }}_${{ matrix.conf }}*'
generateReleaseNotes: True
omitBody: True
omitBodyDuringUpdate: True
omitNameDuringUpdate: True
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/build_ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,20 @@ jobs:
- name: Upload build
uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: ${{ matrix.project }}_${{ matrix.framework }}_${{ matrix.runtime }}_${{ matrix.conf }}
path: ${{ matrix.project }}/bin/${{ matrix.conf }}/${{ matrix.framework }}/${{ matrix.runtime }}/publish/

- name: Upload to rolling
uses: ncipollo/release-action@v1
uses: ncipollo/release-action@v1.14.0
with:
allowUpdates: True
artifacts: ${{ steps.artifact-upload-step.outputs.artifact-id }}
generateReleaseNotes: true
artifacts: '*${{ matrix.project }}_${{ matrix.framework }}_${{ matrix.runtime }}_${{ matrix.conf }}*'
generateReleaseNotes: True
omitBody: True
omitBodyDuringUpdate: True
omitNameDuringUpdate: True
prerelease: True
removeArtifacts: True
replacesArtifacts: True
tag: "ui-rolling"
updateOnlyUnreleased: True
1 change: 1 addition & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
- Attempt to add CD to existing actions
- Try fixing the artifact upload
- Use recommendation from upload-artifact
- Revert artifact ID, use name?

### 3.1.1 (2024-02-20)

Expand Down

0 comments on commit 6742901

Please sign in to comment.