Skip to content

Commit

Permalink
Final cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Schork committed Jun 6, 2023
1 parent adc2825 commit 1e7dd10
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 16 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deploy-3-10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ on:
push:
branches:
- master
- dev

jobs:
deploy-py310-image:
public-py310-image:
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -42,7 +41,7 @@ jobs:
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}_py_3_10:latest
labels: ${{ steps.meta.outputs.labels }}

deploy-private-py310-image:
internal-py310-image:
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/deploy-3-11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ on:
push:
branches:
- master
- dev

jobs:
deploy-py311-image:
public-py311-image:
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -42,7 +41,7 @@ jobs:
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}_py_3_11:latest
labels: ${{ steps.meta.outputs.labels }}

deploy-private-py311-image:
internal-py311-image:
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/deploy-3-9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ on:
push:
branches:
- master
- dev

jobs:
deploy-py39-image:
public-py39-image:
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -42,7 +41,7 @@ jobs:
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}_py_3_9:latest
labels: ${{ steps.meta.outputs.labels }}

deploy-private-py39-image:
internal-py39-image:
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/push-docker-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- 'stable'

jobs:
deploy-py39-image:
public-py39-image:
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}_py_3_9:stable
labels: ${{ steps.meta.outputs.labels }}

deploy-private-py39-image:
internal-py39-image:
runs-on: ubuntu-latest
permissions:
id-token: write
Expand All @@ -60,7 +60,7 @@ jobs:
run: |
make push_stable_3_9
deploy-py310-image:
public-py310-image:
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}_py_3_10:stable
labels: ${{ steps.meta.outputs.labels }}

deploy-private-py310-image:
internal-py310-image:
runs-on: ubuntu-latest
permissions:
id-token: write
Expand All @@ -109,7 +109,7 @@ jobs:
run: |
make push_stable_3_10
deploy-py311-image:
public-py311-image:
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}_py_3_11:stable
labels: ${{ steps.meta.outputs.labels }}

deploy-private-py311-image:
internal-py311-image:
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Local testing of pickle models
You can run a local pickle model via
```
docker run -i --rm -v "$PWD:$PWD" numerai_predict_py_3_9:latest --model $PWD/model.pkl --dataset v4.1/live.parquet --debug
docker run -i --rm -v "$PWD:$PWD" ghcr.io/numerai/numerai_predict_py_3_10:stable --model $PWD/model.pkl
```

## Presigned S3 URLs
Expand Down

0 comments on commit 1e7dd10

Please sign in to comment.