Skip to content

Commit

Permalink
Attempt to fix qemu (#40)
Browse files Browse the repository at this point in the history
* Attempt to fix qemu

* fix dependency name
  • Loading branch information
nhudson authored Nov 15, 2024
1 parent afd1ccf commit c142d94
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/trunk_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,17 @@ jobs:
outputs:
short_sha: ${{ steps.versions.outputs.SHORT_SHA }}
steps:
- name: Install Dependecies
shell: bash
run: |
set -xe
sudo apt-get update && sudo apt-get install -y build-essential ninja-build libpixman-1-dev make wget
- name: Checkout
uses: actions/checkout@v4
- name: Install stoml
shell: bash
run: |
set -xe
sudo apt-get update && sudo apt-get install -y wget
wget https://github.com/freshautomations/stoml/releases/download/v0.7.1/stoml_linux_amd64 &> /dev/null
mv stoml_linux_amd64 stoml
chmod +x stoml
Expand All @@ -71,6 +75,9 @@ jobs:
echo "TAG_VER=$(/usr/local/bin/stoml Trunk.toml extension.version)" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
image: tonistiigi/binfmt:master
platforms: arm64,amd64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand Down

0 comments on commit c142d94

Please sign in to comment.