mirror of
https://github.com/BetterCorp/BetterFrame.git
synced 2026-05-26 19:06:34 +00:00
ci: block-style with: in build.yml checkout steps (flow-style + ${{ }} parser conflict)
This commit is contained in:
parent
8f457c5ca9
commit
3f20d03520
1 changed files with 4 additions and 2 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -63,7 +63,8 @@ jobs:
|
||||||
git config --global --add safe.directory '*'
|
git config --global --add safe.directory '*'
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with: { ref: ${{ inputs.ref }} }
|
with:
|
||||||
|
ref: ${{ inputs.ref }}
|
||||||
|
|
||||||
- name: Install GTK/GStreamer/WebKit build deps
|
- name: Install GTK/GStreamer/WebKit build deps
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -130,7 +131,8 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with: { ref: ${{ inputs.ref }} }
|
with:
|
||||||
|
ref: ${{ inputs.ref }}
|
||||||
|
|
||||||
- name: Pull kiosk aarch64 binary from this run's artifact
|
- name: Pull kiosk aarch64 binary from this run's artifact
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue