Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/integration-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
lint-format:
name: lint and format
runs-on: ubuntu-20.04
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: checkout code
uses: actions/checkout@v4
Expand All @@ -36,7 +36,7 @@ jobs:

test:
name: test
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: checkout code
uses: actions/checkout@v4
Expand All @@ -56,7 +56,7 @@ jobs:

build:
name: build
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: checkout code
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
lint-format:
name: lint and format
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: checkout code
uses: actions/checkout@v4
Expand All @@ -36,7 +36,7 @@ jobs:

test:
name: test frontend
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: checkout code
uses: actions/checkout@v4
Expand All @@ -56,7 +56,7 @@ jobs:

build:
name: build
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
env:
NEXT_PUBLIC_BACKEND_HOST: "localhost"
NEXT_PUBLIC_BACKEND_PORT: "3050"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prod-kube-migration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on: workflow_dispatch

jobs:
run-migrations:
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204

steps:
- name: Checkout code
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/staging-deploy-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
lint-format:
name: lint and format
runs-on: ubuntu-20.04
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: checkout code
uses: actions/checkout@v4
Expand All @@ -39,7 +39,7 @@ jobs:

test:
name: test
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: checkout code
uses: actions/checkout@v4
Expand All @@ -58,7 +58,7 @@ jobs:
run: pnpm run backend test

build-image:
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
needs: [lint-format, test]
name: build & push docker image
steps:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
cache-to: type=gha,mode=max

push-staging:
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
name: deploy changes on staging
#if: github.ref == 'refs/heads/master'
needs: build-image
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/staging-deploy-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
lint-format:
name: lint and format
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: checkout code
uses: actions/checkout@v4
Expand All @@ -38,7 +38,7 @@ jobs:

test:
name: test frontend
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
steps:
- name: checkout code
uses: actions/checkout@v4
Expand All @@ -57,7 +57,7 @@ jobs:
run: pnpm run frontend test

build-image:
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
needs: [lint-format, test]
name:
build & push docker image
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
"PORT=3000"

push-staging:
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204
name:
deploy changes on staging frontend
# if: github.ref == 'refs/heads/master'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staging-kube-migration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on: workflow_dispatch

jobs:
run-migrations:
runs-on: ubuntu-22.04
runs-on: blacksmith-4vcpu-ubuntu-2204

steps:
- uses: actions/checkout@v4
Expand Down
Loading