Skip to content

Commit ea2ffd7

Browse files
committed
Remove AppImage Package
1 parent ee1645c commit ea2ffd7

4 files changed

Lines changed: 14 additions & 62 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,12 @@ jobs:
7272
if: matrix.os == 'windows-latest'
7373
run: cargo build --release --all
7474

75-
- name: Package v2a-converter AppImage
75+
- name: Package Linux binaries
7676
if: matrix.os == 'ubuntu-latest'
77-
uses: AppImageCrafters/build-appimage-action@v1
78-
with:
79-
recipe: v2a-converter/AppImage.yml
80-
81-
- name: Package v2a-player AppImage
82-
if: matrix.os == 'ubuntu-latest'
83-
uses: AppImageCrafters/build-appimage-action@v1
84-
with:
85-
recipe: v2a-player/AppImage.yml
77+
run: |
78+
mkdir -p release
79+
cp target/release/v2a-converter release/
80+
cp target/release/v2a-player release/
8681
8782
- name: Package Windows zip
8883
if: matrix.os == 'windows-latest'
@@ -99,7 +94,7 @@ jobs:
9994
uses: actions/upload-artifact@v4
10095
with:
10196
name: v2a-linux-x86_64
102-
path: v2a-*-x86_64.AppImage
97+
path: release/*
10398

10499
- name: Upload Windows artifact
105100
if: matrix.os == 'windows-latest'

.github/workflows/release.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,12 @@ jobs:
4747
if: matrix.os == 'windows-latest'
4848
run: cargo build --release --all
4949

50-
- name: Package v2a-converter AppImage
50+
- name: Package Linux binaries
5151
if: matrix.os == 'ubuntu-latest'
52-
uses: AppImageCrafters/build-appimage-action@v1
53-
with:
54-
recipe: v2a-converter/AppImage.yml
55-
56-
- name: Package v2a-player AppImage
57-
if: matrix.os == 'ubuntu-latest'
58-
uses: AppImageCrafters/build-appimage-action@v1
59-
with:
60-
recipe: v2a-player/AppImage.yml
52+
run: |
53+
mkdir -p release
54+
cp target/release/v2a-converter release/
55+
cp target/release/v2a-player release/
6156
6257
- name: Package Windows zip
6358
if: matrix.os == 'windows-latest'
@@ -73,8 +68,8 @@ jobs:
7368
uses: softprops/action-gh-release@v2
7469
with:
7570
files: |
76-
v2a-converter-{{ env.VERSION }}-x86_64.AppImage
77-
v2a-player-{{ env.VERSION }}-x86_64.AppImage
78-
v2a-*-windows-x86_64.zip
71+
release/v2a-converter
72+
release/v2a-player
73+
v2a-windows-x86_64.zip
7974
env:
8075
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

v2a-converter/AppImage.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

v2a-player/AppImage.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)