Skip to content

Commit

Permalink
No tailscale anymore ?
Browse files Browse the repository at this point in the history
  • Loading branch information
Narsil committed Aug 5, 2024
1 parent 1ce3bc9 commit 75254c0
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,6 @@ jobs:
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- uses: huggingface/tailscale-action@main
with:
authkey: ${{ secrets.TAILSCALE_AUTHKEY }}
- name: Set short sha
id: vars
run: echo "GITHUB_SHA_SHORT=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
Expand All @@ -107,7 +104,7 @@ jobs:
with:
# list of Docker images to use as base name for tags
images: |
registry.internal.huggingface.tech/safetensors/s390x
ghcr.io/safetensors/s390x
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
Expand All @@ -118,11 +115,11 @@ jobs:
type=semver,pattern={{major}}
type=sha
- name: Login to Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: registry.internal.huggingface.tech
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Test big endian
uses: docker/build-push-action@v4
with:
Expand All @@ -131,5 +128,5 @@ jobs:
file: Dockerfile.s390x.test
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=registry.internal.huggingface.tech/safetensors/s390x:cache,mode=min
cache-to: type=registry,ref=registry.internal.huggingface.tech/safetensors/s390x:cache,mode=min
cache-from: type=registry,ref=ghcr.io/safetensors/s390x:cache,mode=min
cache-to: type=registry,ref=ghcr.io/safetensors/s390x:cache,mode=min

0 comments on commit 75254c0

Please sign in to comment.