Skip to content

Commit 394b519

Browse files
Merge pull request #37 from asw101/fix-release-2
fix(release): Fix release pipeline
2 parents e252006 + ca93779 commit 394b519

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

.github/workflows/release.yml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- "v*"
7+
workflow_dispatch:
78

89
permissions:
910
contents: write
@@ -25,23 +26,25 @@ jobs:
2526
- target: x86_64-unknown-linux-gnu
2627
name: wassette-linux-amd64
2728
runner: ubuntu-latest
28-
- target: aarch64-unknown-linux-gnu
29-
name: wassette-linux-arm
30-
runner: ubuntu-24.04-arm
29+
# Temporarily disabled - aarch64 runners not available for private repos
30+
# - target: aarch64-unknown-linux-gnu
31+
# name: wassette-linux-arm64
32+
# runner: ubuntu-24.04-arm
3133
# macOS targets
3234
- target: x86_64-apple-darwin
3335
name: wassette-darwin-amd64
3436
runner: macos-13
3537
- target: aarch64-apple-darwin
36-
name: wassette-darwin-arm
38+
name: wassette-darwin-arm64
3739
runner: macos-latest
3840
# Windows targets
3941
- target: x86_64-pc-windows-msvc
4042
name: wassette-windows-amd64.exe
4143
runner: windows-latest
42-
- target: aarch64-pc-windows-msvc
43-
name: wassette-windows-arm64.exe
44-
runner: windows-11-arm
44+
# Temporarily disabled - aarch64 runners not available for private repos
45+
# - target: aarch64-pc-windows-msvc
46+
# name: wassette-windows-arm64.exe
47+
# runner: windows-11-arm
4548

4649
steps:
4750
- name: Checkout repository
@@ -64,15 +67,15 @@ jobs:
6467
- name: Prepare binary (Unix)
6568
if: "!contains(matrix.target, 'windows')"
6669
run: |
67-
cd target/${{ matrix.target }}/release
68-
tar czvf ../../../${{ matrix.name }}.tar.gz wassette
70+
cd target/release
71+
tar czvf ../../${{ matrix.name }}.tar.gz wassette
6972
cd -
7073
7174
- name: Prepare binary (Windows)
7275
if: contains(matrix.target, 'windows')
7376
run: |
74-
cd target/${{ matrix.target }}/release
75-
7z a ../../../${{ matrix.name }}.zip wassette.exe
77+
cd target/release
78+
7z a ../../${{ matrix.name }}.zip wassette.exe
7679
cd -
7780
shell: bash
7881

0 commit comments

Comments
 (0)