76d991c447
Auto Update PR / update-prs (push) Has been cancelled
CI / format-check (push) Has been cancelled
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / live-api-tests (push) Has been cancelled
CI / plugin-integration-test (push) Has been cancelled
CI / ollama-integration-test (push) Has been cancelled
CI / test-fork-pr (push) Has been cancelled
67 lines
2.3 KiB
YAML
67 lines
2.3 KiB
YAML
# Copyright 2025 Google LLC.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
name: Publish to Zenodo
|
|
on:
|
|
release:
|
|
types: [published]
|
|
workflow_dispatch:
|
|
inputs:
|
|
release_tag:
|
|
description: 'Tag to publish (e.g. v1.3.0). Used only when manually re-running.'
|
|
required: true
|
|
type: string
|
|
|
|
concurrency:
|
|
group: zenodo-${{ github.ref }}
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
zenodo:
|
|
# Only run on releases from the main repository, not forks
|
|
# Skip pre-releases to avoid creating DOIs for test releases
|
|
if: ${{ github.event_name == 'workflow_dispatch' || (!github.event.release.prerelease && github.repository == 'google/langextract') }}
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
permissions:
|
|
contents: read
|
|
env:
|
|
ZENODO_TOKEN: ${{ secrets.ZENODO_TOKEN }}
|
|
ZENODO_RECORD_ID: ${{ secrets.ZENODO_RECORD_ID }}
|
|
RELEASE_TAG: ${{ github.event.inputs.release_tag || github.ref_name }}
|
|
GITHUB_REPOSITORY: ${{ github.repository }}
|
|
steps:
|
|
# Note: we deliberately do not check out the input ref. workflow_dispatch
|
|
# is meant for diagnostic re-runs of the latest release, and we want the
|
|
# *fixed* script from main, not whatever script existed at the older tag.
|
|
# The build below uses main's pyproject.toml; this only works correctly
|
|
# when main's version still matches the tag being republished.
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Build distributions
|
|
run: |
|
|
python -m pip install --upgrade pip build
|
|
python -m build
|
|
|
|
- name: Install dependencies
|
|
run: python -m pip install requests
|
|
|
|
- name: Publish new Zenodo version
|
|
run: python .github/scripts/zenodo_publish.py
|