chore: Release 1.14.1 (#2219) #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Hubble | |
on: | |
push: | |
tags: | |
- '@farcaster/hubble@*' | |
concurrency: package-tags | |
jobs: | |
publish-docker-image: | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Log in so we can push the image layers + tags to Docker Hub | |
- uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.FARCASTERXYZ_DOCKER_HUB_USER }} | |
password: ${{ secrets.FARCASTERXYZ_DOCKER_HUB_TOKEN }} | |
- uses: depot/setup-action@v1 | |
- run: ./scripts/publish-image.sh | |
shell: bash | |
env: | |
DEPOT_TOKEN: ${{ secrets.DEPOT_TOKEN }} | |
DEPOT_PROJECT_ID: ${{ secrets.DEPOT_PROJECT_ID }} |