Skip to content

Commit 7099b25

Browse files
authored
Merge pull request #5 from codemie-ai/feat/publish-codemie-workflow
feat: add codemie whitelabel package and fix CI runners
2 parents c889cb3 + 346f02c commit 7099b25

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
1111

1212
jobs:
1313
deploy:
14-
runs-on: blacksmith-4vcpu-ubuntu-2404
14+
runs-on: ${{ vars.RUNNER_UBUNTU || 'blacksmith-4vcpu-ubuntu-2404' }}
1515
steps:
1616
- uses: actions/checkout@v3
1717

.github/workflows/nix-hashes.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
matrix:
2727
include:
2828
- system: x86_64-linux
29-
runner: blacksmith-4vcpu-ubuntu-2404
29+
runner: ${{ vars.RUNNER_UBUNTU || 'blacksmith-4vcpu-ubuntu-2404' }}
3030
- system: aarch64-linux
31-
runner: blacksmith-4vcpu-ubuntu-2404-arm
31+
runner: ${{ vars.RUNNER_UBUNTU_ARM || 'blacksmith-4vcpu-ubuntu-2404-arm' }}
3232
- system: x86_64-darwin
3333
runner: macos-15-intel
3434
- system: aarch64-darwin
@@ -77,7 +77,7 @@ jobs:
7777
update-hashes:
7878
needs: compute-hash
7979
if: github.event_name != 'pull_request'
80-
runs-on: blacksmith-4vcpu-ubuntu-2404
80+
runs-on: ${{ vars.RUNNER_UBUNTU || 'blacksmith-4vcpu-ubuntu-2404' }}
8181

8282
steps:
8383
- name: Checkout repository

0 commit comments

Comments
 (0)