Skip to content

Commit 49686a9

Browse files
committed
fix
1 parent b49c6bb commit 49686a9

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/app.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ on:
55
branches:
66
- main
77
paths-ignore:
8-
- "**.md"
8+
- '**.md'
99
pull_request:
1010
types: [opened, reopened, synchronize]
1111
branches:
1212
- main
1313
paths-ignore:
14-
- "**.md"
15-
- "infra/**"
16-
- ".terraform-version"
17-
- ".github/workflows/infra.yml"
14+
- '**.md'
15+
- 'infra/**'
16+
- '.terraform-version'
17+
- '.github/workflows/infra.yml'
1818

1919
env:
2020
REGISTRY: ghcr.io
@@ -35,7 +35,7 @@ jobs:
3535
id: node
3636
uses: actions/setup-node@v3
3737
with:
38-
node-version-file: ".nvmrc"
38+
node-version-file: '.nvmrc'
3939
- name: yarn install
4040
uses: backstage/actions/yarn-install@v0.6.17
4141
with:

.github/workflows/bump-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
ssh-key: ${{ secrets.PUSH_TAGS_PRIVATE_KEY }} # https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow
2525
persist-credentials: true
26-
fetch-depth: "0"
26+
fetch-depth: '0'
2727
- name: Bump version
2828
id: bump-version
2929
uses: anothrNick/github-tag-action@1.75.0

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Deploy
33
on:
44
push:
55
tags:
6-
- "*" # Push events to every tag not containing /
6+
- '*' # Push events to every tag not containing /
77
workflow_dispatch:
88

99
env:
@@ -43,7 +43,7 @@ jobs:
4343
docker push ${{ steps.prep.outputs.image_name }}:${{ steps.prep.outputs.tag }}
4444
4545
deploy:
46-
needs: ["publish_images"]
46+
needs: ['publish_images']
4747
environment:
4848
name: production
4949
runs-on:

.github/workflows/infra.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ on:
55
branches:
66
- main
77
paths-ignore:
8-
- "**.md"
8+
- '**.md'
99
pull_request:
1010
types: [opened, reopened, synchronize]
1111
branches:
1212
- main
1313
paths:
14-
- "Makefile"
15-
- "docker-compose.yaml"
16-
- ".checkov.yaml"
17-
- ".terraform.version"
18-
- ".github/workflows/infra.yml"
19-
- "infra/**"
14+
- 'Makefile'
15+
- 'docker-compose.yaml'
16+
- '.checkov.yaml'
17+
- '.terraform.version'
18+
- '.github/workflows/infra.yml'
19+
- 'infra/**'
2020

2121
env:
2222
REGISTRY: ghcr.io

docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ services:
3131
env_file: .env
3232
backstagedb:
3333
container_name: backstagedb
34-
image: "postgres:16"
34+
image: 'postgres:16'
3535
env_file: .env
3636
ports:
3737
- 5432:5432
3838
volumes:
39-
- "${DB_LOCAL_PATH}:/var/lib/postgresql/data"
39+
- '${DB_LOCAL_PATH}:/var/lib/postgresql/data'
4040
tofu:
4141
image: ghcr.io/opentofu/opentofu:1.10.6
4242
profiles:

0 commit comments

Comments
 (0)