Skip to content
This repository was archived by the owner on Sep 16, 2025. It is now read-only.

Commit e025acd

Browse files
committed
Refactor deployment workflow to specify multiple runner architectures for build and deploy jobs
1 parent e0f26c0 commit e025acd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ env:
1111

1212
jobs:
1313
build-and-push:
14-
runs-on: self-hosted
14+
runs-on:
15+
- self-hosted
16+
- x64
1517
permissions:
1618
contents: read
1719
packages: write
@@ -51,7 +53,9 @@ jobs:
5153
tags: ${{ steps.docker_tags.outputs.tags }}
5254

5355
deploy:
54-
runs-on: ubuntu-latest
56+
runs-on:
57+
- ubuntu-latest
58+
- x64
5559
needs: build-and-push
5660

5761
steps:

0 commit comments

Comments
 (0)