Skip to content

Commit

Permalink
ci(action): remove buildx.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
innobead committed Jan 13, 2025
1 parent 0378a8c commit fb57a5f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 32 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,20 @@ jobs:
- run: just test
- run: just build

build-linux-aarch64:
name: Build - linux aarch64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest
- run: echo ${{ steps.buildx.outputs.platforms }}
- name: Build artifacts
run: just build-multiarch

build-macos:
name: Build - MacOS
runs-on: macos-latest
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/buildx.yaml

This file was deleted.

17 changes: 6 additions & 11 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:

- run: just setup-dev
- run: just release

- uses: softprops/action-gh-release@v2
if: ${{startsWith(github.ref, 'refs/tags/') }}
with:
Expand All @@ -61,14 +62,10 @@ jobs:
with:
version: latest

- name: Print available platforms
run: echo ${{ steps.buildx.outputs.platforms }}

- name: Setup, Test, Build
run: just release-multiarch
- run: echo ${{ steps.buildx.outputs.platforms }}
- run: just release-multiarch

- name: Release artifacts
uses: softprops/action-gh-release@v2
- uses: softprops/action-gh-release@v2
if: ${{startsWith(github.ref, 'refs/tags/') }}
with:
draft: true
Expand All @@ -91,8 +88,7 @@ jobs:
- run: just setup-dev
- run: just release

- name: Release artifacts
uses: softprops/action-gh-release@v2
- uses: softprops/action-gh-release@v2
if: ${{startsWith(github.ref, 'refs/tags/') }}
with:
draft: true
Expand All @@ -112,8 +108,7 @@ jobs:
- run: ./hack/windows/setup-dev.ps1
- run: ./hack/windows/release.ps1

- name: Release artifacts
uses: softprops/action-gh-release@v2
- uses: softprops/action-gh-release@v2
if: ${{startsWith(github.ref, 'refs/tags/') }}
with:
draft: true
Expand Down

0 comments on commit fb57a5f

Please sign in to comment.