Skip to content

Commit

Permalink
Fixed typo in release process
Browse files Browse the repository at this point in the history
  • Loading branch information
rakshith-ravi committed Jan 30, 2024
1 parent be6ffac commit 6b936e6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/publish_indexify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,11 @@ jobs:
path: /tmp/release/
- name: Name Artifacts
run: |
ls -lR /tmp/release/
mv /tmp/release/indexify-windows-amd64.exe/indexify.exe /tmp/release/indexify-${{ needs.extract-version.outputs.version }}-windows-amd64.exe
mv /tmp/release/indexify-darwin-arm64/indexify /tmp/release/indexify-${{ needs.extract-version.outputs.version }}-darwin-arm64
mv /tmp/release/indexify-linux-amd64/indexify /tmp/release/indexify-${{ needs.extract-version.outputs.version }}-linux-amd64
mv /tmp/release/indexify-deb-linux-amd64/indexify_${{ needs.extract-version.outputs.version }}-1_amd64.deb /tmp/release/indexify-${{ needs.extract-version.outputs.version }}-linux-amd64.deb
mv /tmp/release/indexify-deb-linux-aarch64/indexify_${{ needs.extract-version.outputs.version }}-1_arm64.deb /tmp/release/indexify-${{ needs.extract-version.outputs.version }}-linux-arm64.deb
ls -lR /tmp/release/
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
Expand Down Expand Up @@ -167,7 +165,7 @@ jobs:
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: /tmp/release/indexify-${{ needs.extract-version.outputs.version }}-amd64.deb
asset_path: /tmp/release/indexify-${{ needs.extract-version.outputs.version }}-linux-amd64.deb
asset_name: indexify-${{ needs.extract-version.outputs.version }}-linux-amd64.deb
asset_content_type: application/octet-stream
env:
Expand All @@ -176,7 +174,7 @@ jobs:
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: /tmp/release/indexify-${{ needs.extract-version.outputs.version }}-arm64.deb
asset_path: /tmp/release/indexify-${{ needs.extract-version.outputs.version }}-linux-arm64.deb
asset_name: indexify-${{ needs.extract-version.outputs.version }}-linux-arm64.deb
asset_content_type: application/octet-stream
env:
Expand Down

0 comments on commit 6b936e6

Please sign in to comment.