Skip to content

Commit

Permalink
don't upload release twice to github
Browse files Browse the repository at this point in the history
  • Loading branch information
nanu-c committed Oct 27, 2023
1 parent b3b0386 commit e7d4949
Showing 1 changed file with 0 additions and 56 deletions.
56 changes: 0 additions & 56 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,59 +59,3 @@ jobs:
**/*.click
**/*.deb
**/*.AppImage
- name: Add AppImage to release (amd64)
uses: actions/upload-release-asset@v1
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build-artifacts/build-axolotl-linux-amd64-appimage
asset_name: Axolotl-${{ env.VERSION }}-amd64.AppImage
asset_content_type: application/vnd.appimage

- name: Add click to release (amd64)
uses: actions/upload-release-asset@v1
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build-artifacts/Axolotl-Clickable/x86_64-linux-gnu/app/textsecure.nanuc_${{ env.CLICKABLE_VERSION }}_amd64.click
asset_name: textsecure.nanuc_${{ env.VERSION }}_amd64.click
asset_content_type: application/vnd.debian.binary-package

- name: Add click to release (arm64)
uses: actions/upload-release-asset@v1
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build-artifacts/Axolotl-Clickable/aarch64-linux-gnu/app/textsecure.nanuc_${{ env.CLICKABLE_VERSION }}_arm64.click
asset_name: textsecure.nanuc_${{ env.VERSION }}_arm64.click
asset_content_type: application/vnd.debian.binary-package

- name: Add click to release (armhf)
uses: actions/upload-release-asset@v1
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build-artifacts/Axolotl-Clickable/arm-linux-gnueabihf/app/textsecure.nanuc_${{ env.CLICKABLE_VERSION }}_armhf.click
asset_name: textsecure.nanuc_${{ env.VERSION }}_armhf.click
asset_content_type: application/vnd.debian.binary-package

- name: Add Debian package to release (arm64)
uses: actions/upload-release-asset@v1
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build-artifacts/Axolotl-Debian-arm64-package
asset_name: axolotl_${{ env.RELEASE_VERSION }}-1_arm64.deb
asset_content_type: application/deb

0 comments on commit e7d4949

Please sign in to comment.