Skip to content

Commit

Permalink
Install buildx in prep-release pipeline (#263)
Browse files Browse the repository at this point in the history
[The prep-release pipeline
failed](https://github.com/ml6team/fondant/actions/runs/5452193633)
because the new build script requires buildx.
  • Loading branch information
RobbeSneyders authored Jul 4, 2023
1 parent 2d6829f commit e3b4504
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Set buildx alias
run: docker buildx install

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set buildx alias
run: docker buildx install

- name: Build components
run: ./scripts/build_components.sh --cache -t $GITHUB_SHA -t dev
6 changes: 6 additions & 0 deletions .github/workflows/prep-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
with:
python-version: 3.9

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Set buildx alias
run: docker buildx install

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
Expand Down

0 comments on commit e3b4504

Please sign in to comment.