Skip to content

Merge branch 'temp-merge' into zustand/io/migration #141

Merge branch 'temp-merge' into zustand/io/migration

Merge branch 'temp-merge' into zustand/io/migration #141

Workflow file for this run

name: Reusable Release Workflow
on:
workflow_call:
inputs:
working-directory:
required: true
type: string
description: "Directory from which this pipeline executes"
component-path:
required: true
type: string
description: "Relative path to the component being released"
secrets:
GITHUB_TOKEN:

Check failure on line 15 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

secret name `GITHUB_TOKEN` within `workflow_call` can not be used since it would collide with system reserved name
required: true
PYPI_API_TOKEN:
required: true
env:
POETRY_VERSION: "1.5.1"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: |
pip install poetry==$POETRY_VERSION
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "poetry"
- name: Build project for distribution
run: ${{ inputs.build_cmd }}
- name: Check Version
id: check-version
run: |
echo "version=$(poetry version --short)" >> $GITHUB_OUTPUT
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*"
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
generateReleaseNotes: true
tag: v${{ steps.check-version.outputs.version }}
commit: main
- name: Publish to PyPI
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
run: |
poetry publish
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
file: ./build_and_push.Dockerfile
tags: |
logspace/langflow:${{ steps.check-version.outputs.version }}
logspace/langflow:latest