Skip to content

Commit e6d8b85

Browse files
committed
Refactor CI workflow to separate build jobs for DEV and 3.9-rc1 images
1 parent 85225c3 commit e6d8b85

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/docker-image-build.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,8 @@ on:
1010
workflow_dispatch:
1111

1212
jobs:
13-
build:
13+
build-dev:
1414
runs-on: ubuntu-latest
15-
# Allows parallel jobs without aborting all on first failure
16-
strategy:
17-
fail-fast: false
18-
1915
steps:
2016
- name: Checkout code
2117
uses: actions/checkout@v4
@@ -38,6 +34,12 @@ jobs:
3834
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
3935
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
4036

37+
build-3-9-rc1:
38+
runs-on: ubuntu-latest
39+
steps:
40+
- name: Checkout code
41+
uses: actions/checkout@v4
42+
4143
- name: Build 3.9-rc1 Docker image
4244
run: |
4345
docker build ./src/3.9 --tag nest/nest-simulator:3.9-rc1

0 commit comments

Comments
 (0)