Skip to content

Commit

Permalink
Removed arm64 deb build
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikstengaard committed Nov 3, 2022
1 parent adb4607 commit a6ab84a
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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'

0 comments on commit a6ab84a

Please sign in to comment.