mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Add if condition to website deploy workflow and remove indent of subsequent lines. (#97)
Second attempt to limit the "Deploy Fleet Website" workflow to only the fleetdm/fleet repo.
This commit is contained in:
parent
bb921bc973
commit
03c64da3a6
1 changed files with 2 additions and 2 deletions
4
.github/workflows/deploy-fleet-website.yml
vendored
4
.github/workflows/deploy-fleet-website.yml
vendored
|
|
@ -7,9 +7,9 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
|
||||
if: (GITHUB_REPOSITORY == 'fleetdm/fleet')
|
||||
if: GITHUB_REPOSITORY == 'fleetdm/fleet'
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
|
|||
Loading…
Reference in a new issue