Skip to content

update publishing workflow #7

update publishing workflow

update publishing workflow #7

Workflow file for this run

name: package
on:
push:
branches:
- docs
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Build Package
run: |
pip install --upgrade pip build
python3 -m build
uses: actions/upload-artifact@v4
with:

Check failure on line 27 in .github/workflows/package.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/package.yaml

Invalid workflow file

You have an error in your yaml syntax on line 27
name: python-package-distributions
path: dist/
publish:
runs-on: ubuntu-latest
name: Publish Package
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/docs' }}
needs:
- build
environment:
name: pypi
url: https://pypi.org/p/palimpzest
permissions:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
github-release:
name: >-
Sign distribution w/Sigstore and upload to GitHub Release
needs:
- publish-to-pypi
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Sign the dists with Sigstore
uses: sigstore/[email protected]
with:
inputs: >-
./dist/*.tar.gz
./dist/*.whl
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: >-
gh release create
"$GITHUB_REF_NAME"
--repo "$GITHUB_REPOSITORY"
--notes ""
- name: Upload artifact signatures to GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
# Upload to GitHub Release using the `gh` CLI.
# `dist/` contains the built packages, and the
# sigstore-produced signatures and certificates.
run: >-
gh release upload
"$GITHUB_REF_NAME" dist/**
--repo "$GITHUB_REPOSITORY"