fix: update build workflow to use Ubuntu for dependency installation
This commit is contained in:
@@ -8,15 +8,14 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build_publish:
|
build_publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
|
||||||
image: archlinux:latest
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Install deps (Arch)
|
- name: Install deps (Ubuntu)
|
||||||
run: |
|
run: |
|
||||||
pacman -Syu --noconfirm --needed \
|
sudo apt-get update
|
||||||
base-devel git ca-certificates curl tar gzip \
|
sudo apt-get install -y \
|
||||||
rust cargo
|
build-essential git ca-certificates curl tar gzip \
|
||||||
|
rustc cargo
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
Reference in New Issue
Block a user