mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
ci: Always use ${{ ... }} expression syntax in "if" conditional
This commit is contained in:
committed by
mborgerson
parent
e409f7afd9
commit
c7a184beaa
@@ -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
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user