Skip to content

Commit

Permalink
Attempting to reuse same filename.
Browse files Browse the repository at this point in the history
  • Loading branch information
EmbeddedDevops1 committed May 28, 2024
1 parent 6a73226 commit 186dced
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
- name: Create Artifact
run: |
mkdir -p dist
echo "This is a generated artifact for ${{ matrix.os }}" > dist/cover-agent-${{ matrix.os }}.txt
echo "This is a generated artifact for ${{ matrix.os }}" > dist/cover-agent.txt
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: cover-agent-${{ matrix.os }}
path: dist/cover-agent-${{ matrix.os }}.txt
path: dist/cover-agent.txt

release:
needs: [build, changes]
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/ubuntu-latest/cover-agent-ubuntu-latest.txt
asset_path: dist/ubuntu-latest/cover-agent.txt
asset_name: cover-agent-ubuntu.txt
asset_content_type: text/plain
- name: Upload Release Asset (Windows)
Expand All @@ -87,7 +87,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/windows-latest/cover-agent-windows-latest.txt
asset_path: dist/windows-latest/cover-agent.txt
asset_name: cover-agent-windows.txt
asset_content_type: text/plain
- name: Upload Release Asset (macOS)
Expand All @@ -96,6 +96,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/macos-latest/cover-agent-macos-latest.txt
asset_path: dist/macos-latest/cover-agent.txt
asset_name: cover-agent-macos.txt
asset_content_type: text/plain
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3
0.0.4

0 comments on commit 186dced

Please sign in to comment.