Skip to content

Commit

Permalink
Update release workflow to use Ubuntu as the build environment
Browse files Browse the repository at this point in the history
  • Loading branch information
emcrisostomo committed Dec 30, 2024
1 parent dbfda12 commit 0415faa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release-tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ on:

jobs:
build:
runs-on: debian-latest
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install dependencies
- name: Install dependencies on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y autoconf automake autopoint gettext git libtool make texinfo g++
sudo apt-get install -y autoconf automake autopoint g++ gettext git libtool make texinfo
- name: Run autogen
run: ./autogen.sh
Expand Down

0 comments on commit 0415faa

Please sign in to comment.