Skip to content

Commit

Permalink
Fix target processing
Browse files Browse the repository at this point in the history
  • Loading branch information
robwittman committed Jul 11, 2023
1 parent c680ac1 commit 590732f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:
# TODO: This should not be SHA, but branch / tag name
TAG: ${{ github.sha }}
VERSION: ${{ matrix.version }}
TARGET: python_${VERSION//./_}
steps:
- uses: actions/checkout@v3
- name: Install Task
Expand All @@ -85,7 +86,7 @@ jobs:
uses: docker/bake-action@v3
with:
push: false
targets: python_${VERSION//./_}
targets: $TARGET

build_rlang_kernels:
runs-on: ubuntu-latest
Expand All @@ -99,6 +100,7 @@ jobs:
# TODO: This should not be SHA, but branch / tag name
TAG: ${{ github.sha }}
VERSION: ${{ matrix.version }}
TARGET: rlang_${VERSION//./_}
steps:
- uses: actions/checkout@v3
- name: Install Task
Expand All @@ -117,4 +119,4 @@ jobs:
uses: docker/bake-action@v3
with:
push: false
targets: rlang_${VERSION//./_}
targets: $TARGET

0 comments on commit 590732f

Please sign in to comment.