Skip to content

Commit

Permalink
Fix warning on actions-without-meeting minutes (#1645)
Browse files Browse the repository at this point in the history
  • Loading branch information
BD103 authored Oct 9, 2024
1 parent 54305aa commit bb90a62
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,9 @@ jobs:
key: assets-${{ steps.date.outputs.date }}-${{ hashFiles('generate-assets/**/*.rs', 'generate-assets/Cargo.toml', 'generate-assets/generate_assets.sh') }}

- name: "Build Bevy Assets"
# Only run if in merge queue or if no cache was found
if: ${{ github.event_name == 'merge_group' || !steps.restore-cached-assets.outputs.cache-hit }}
# Only run if in merge queue or if no cache was found. `cache-hit` is a string, so we
# cannot use normal boolean operators on it, as `!'false' == true`.
if: ${{ github.event_name == 'merge_group' || steps.restore-cached-assets.outputs.cache-hit != 'true' }}
working-directory: generate-assets
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
+++
title = "Actions by the Board without a Meeting"
date = 2024-09-16
authors = ["Alice I. Cecile"]
[extra]
github = "alice-i-cecile"
+++

<!-- more -->
Expand Down

0 comments on commit bb90a62

Please sign in to comment.