diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 270cd35..02e34a6 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -314,26 +314,6 @@ jobs: retention-days: 3 if: matrix.os == 'ubuntu-latest' - - name: Set Linux arm64 deb artifact - id: linux_arm64_deb - shell: pwsh - run: | - $artifactName='hst-imager.gui.linux-arm64.deb' - $artifactFile=(gci './src/Hst.Imager.GuiApp/bin/Desktop' -Recurse -Filter '*${{ env.BUILD_VERSION }}_arm64.deb' | Select-Object -First 1).FullName - Rename-Item $artifactFile -NewName $artifactName - $artifactPath=(Join-Path (Split-Path $artifactFile -Parent) -ChildPath $artifactName) - "::set-output name=artifact_name::$artifactName" - "::set-output name=artifact_path::$artifactPath" - if: matrix.os == 'ubuntu-latest' - - - name: Upload Linux arm64 deb artifact - uses: actions/upload-artifact@v2 - with: - name: "${{ steps.linux_arm64_deb.outputs.artifact_name }}" - path: "${{ steps.linux_arm64_deb.outputs.artifact_path }}" - retention-days: 3 - if: matrix.os == 'ubuntu-latest' - publish: needs: [build-console, build-gui] runs-on: windows-latest @@ -422,11 +402,6 @@ jobs: with: name: hst-imager.gui.linux-x64.deb - - name: Download Gui Linux ARM64 artifact file - uses: actions/download-artifact@v2 - with: - name: hst-imager.gui.linux-arm64.deb - - name: Create release uses: actions/create-release@v1 id: create_release @@ -570,14 +545,4 @@ jobs: upload_url: ${{ steps.create_release.outputs.upload_url }} asset_path: hst-imager.gui.linux-x64.deb asset_name: '${{ env.RELEASE_VERSION }}_gui_linux_x64.deb' - asset_content_type: 'application/octet-stream' - - - name: Upload Gui Linux arm64 deb artifact - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ github.token }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: hst-imager.gui.linux-arm64.deb - asset_name: '${{ env.RELEASE_VERSION }}_gui_linux_arm64.deb' asset_content_type: 'application/octet-stream' \ No newline at end of file