ci: Always use ${{ ... }} expression syntax in "if" conditional

This commit is contained in:
Matt Borgerson
2026-01-04 23:38:25 -07:00
committed by mborgerson
parent e409f7afd9
commit c7a184beaa
3 changed files with 3 additions and 3 deletions
@@ -17,7 +17,7 @@ env:
jobs:
build-image:
name: Build and Publish Image
if: github.repository_owner == 'xemu-project'
if: ${{ github.repository_owner == 'xemu-project' }}
runs-on: ubuntu-latest
steps:
- name: Clone tree
+1 -1
View File
@@ -7,7 +7,7 @@ on:
jobs:
update_website:
name: Update website
if: github.repository_owner == 'xemu-project'
if: ${{ github.repository_owner == 'xemu-project' }}
uses: ./.github/workflows/update-website.yml
update_ppa_snapshot:
+1 -1
View File
@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Trigger website update
if: github.repository_owner == 'xemu-project'
if: ${{ github.repository_owner == 'xemu-project' }}
uses: benc-uk/workflow-dispatch@e2e5e9a103e331dad343f381a29e654aea3cf8fc # v1.2.4
with:
workflow: build.yml