Skip to content

Commit

Permalink
Small fix to get ubuntu build running again (missing apt update) (ped…
Browse files Browse the repository at this point in the history
…roterzero#8)

Small fix to get ubuntu build running again (missing apt update)
  • Loading branch information
pedroterzero authored Feb 20, 2024
1 parent 38a326d commit b2666df
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/aseprite_build_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: Build and deploy Aseprite

on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
push:
branches:
- master
- fix

env:
BUILD_TYPE: Release
Expand Down Expand Up @@ -42,7 +44,7 @@ jobs:
key: cached_version
- name: Should we start new build?
id: should_build
if: steps.version_check.outputs.cache-hit != 'true'
if: github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/fix' || steps.version_check.outputs.cache-hit != 'true'
run: echo "should_build=true" >> $GITHUB_OUTPUT
- name: Create Release
id: create_release
Expand Down Expand Up @@ -73,7 +75,7 @@ jobs:
uses: seanmiddleditch/gha-setup-ninja@v3
- name: (Ubuntu) Install dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt install -y cmake ninja-build libxcursor-dev libxi-dev libgl1-mesa-dev
run: sudo apt update && sudo apt install -y cmake ninja-build libxcursor-dev libxi-dev libgl1-mesa-dev
- name: (macOS) Install dependencies
if: matrix.os == 'macOS-latest'
run: brew install ninja p7zip
Expand Down

0 comments on commit b2666df

Please sign in to comment.