Skip to content

Commit

Permalink
Merge pull request #19 from beclab/feat/rank-arm-build
Browse files Browse the repository at this point in the history
Feat/rank arm build
  • Loading branch information
bleachzou3 authored Jun 20, 2024
2 parents 4f88e49 + b975e08 commit 8a8ca18
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 6 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/update-recall.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Update Recall

on:
workflow_dispatch:
inputs:
tags:
description: 'Release Tags'

jobs:
update_recall:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASS }}

- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
push: true
tags: beclab/r4recall:${{ github.event.inputs.tags }}
file: Dockerfile.recall
platforms: linux/amd64,linux/arm64
3 changes: 0 additions & 3 deletions .github/workflows/update_r4rank.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
inputs:
tags:
description: 'Release Tags'
push:
tags:
- '*'

jobs:
update_rank:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/update_r4train.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
inputs:
tags:
description: 'Release Tags'
push:
tags:
- '*'

jobs:
update_train:
Expand Down

0 comments on commit 8a8ca18

Please sign in to comment.