Skip to content

Commit c0ad077

Browse files
mtreinishSamD-1998
authored andcommitted
Fix repository_owner condition docs_deploy gha job (Qiskit#10635)
This commit fixes an issue in the job definition for the new docs deployment job added in Qiskit#10610. The new jobs are conditioned to only execute from the Qiskit/qiskit-terra repo. However that line is being flagged as a syntax error in github. This seems to be due to the double quotes used for `"Qiskit"`. A similar condition exists on the pre-existing github actions jobs but they use a single quote instead of a double and they function correctly. This commit updates the condition to used single quotes to match the working syntax in other jobs.
1 parent 22df15d commit c0ad077

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workflows/docs_deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323

2424
jobs:
2525
build:
26-
if: github.repository_owner == "Qiskit"
26+
if: github.repository_owner == 'Qiskit'
2727
name: Build
2828
runs-on: ubuntu-latest
2929

0 commit comments

Comments
 (0)