81 lines
2.4 KiB
YAML
81 lines
2.4 KiB
YAML
env:
|
|
REGISTRY: ghcr.io
|
|
ECR_REGISTRY: 976079455550.dkr.ecr.us-east-1.amazonaws.com
|
|
IMAGE_NAME: ${{ github.repository }}-lsp
|
|
|
|
name: Publish python-client
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish_pypi:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/windmill-labs/python-client-builder
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Upload python client
|
|
env:
|
|
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
|
run: |
|
|
cd python-client
|
|
./publish.sh
|
|
|
|
publish_lsp:
|
|
needs: [publish_pypi]
|
|
runs-on: [self-hosted, new]
|
|
steps:
|
|
- name: Sleep for 30 seconds waiting for pypi to update index
|
|
run: sleep 30s
|
|
shell: bash
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: |
|
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
${{ env.ECR_REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
tags: |
|
|
type=ref,event=branch
|
|
type=ref,event=pr
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
- name: Login to registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Login to ECR
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ${{ env.ECR_REGISTRY }}
|
|
username: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
- name: Build and push publicly
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: "{{defaultContext}}:lsp"
|
|
push: true
|
|
tags: |
|
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
|
|
${{ env.ECR_REGISTRY }}/${{ env.IMAGE_NAME }}:latest
|
|
${{ steps.metalocal.outputs.tags }}
|
|
${{ steps.meta.outputs.tags }}
|
|
registry.uffizzi.com/windmill-lsp:60d
|
|
labels: ${{ steps.metalocal.outputs.labels }}
|
|
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache
|
|
cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache,mode=max
|