Skip to content

Commit d142b04

Browse files
authored
fix: github action syntax needs single quotes, resolves deploys (#417) (#416)
fix: github action syntax needs single quotes, resolves deploys
1 parent 89799d4 commit d142b04

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/dev-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: read
99
jobs:
1010
build-and-deploy:
11-
if: github.repository == "galaxyproject/brc-analytics"
11+
if: github.repository == 'galaxyproject/brc-analytics'
1212
runs-on: ubuntu-latest
1313

1414
steps:

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build-and-deploy:
11-
if: github.repository == "galaxyproject/brc-analytics"
11+
if: github.repository == 'galaxyproject/brc-analytics'
1212
runs-on: ubuntu-latest
1313
environment: ${{ github.ref == 'refs/heads/production' && 'production' || 'development' }}
1414

.github/workflows/release-please.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ name: release-please
1212

1313
jobs:
1414
release-please:
15-
if: github.repository == "galaxyproject/brc-analytics"
15+
if: github.repository == 'galaxyproject/brc-analytics'
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: googleapis/release-please-action@v4

0 commit comments

Comments
 (0)