Skip to content

Commit

Permalink
chore: ignore apt update failure
Browse files Browse the repository at this point in the history
  • Loading branch information
jgillich committed Jan 21, 2024
1 parent 1fff88e commit 62f13d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
goreleaser:
runs-on: ubuntu-latest
container:
image: ubuntu:23.10
image: ubuntu:24.04
steps:
- if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
run: echo "flags=--snapshot" >> $GITHUB_ENV
- name: Install dependencies
run: |
dpkg --add-architecture arm64
apt update
apt update || true # not every repo is available for arm64
apt install -y libgtk-4-dev libgtk-4-dev:arm64 libgtksourceview-5-dev libgtksourceview-5-dev:arm64 libadwaita-1-dev libadwaita-1-dev:arm64 libgirepository1.0-dev libgirepository1.0-dev:arm64 gcc-aarch64-linux-gnu libc6-dev-arm64-cross git golang-go
git config --global --add safe.directory '*'
- name: Checkout
Expand Down

0 comments on commit 62f13d1

Please sign in to comment.