Skip to content

chore(main): release 0.6.8 (#763) #309

chore(main): release 0.6.8 (#763)

chore(main): release 0.6.8 (#763) #309

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
workflow_dispatch:
jobs:
release:
name: release
runs-on: ubuntu-latest
environment:
name: release
url: https://pypi.org/p/stac-api-validator
permissions:
id-token: write
if: ${{ github.repository }} == 'stac-utils/stac-api-validator'

Check warning on line 18 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release

Workflow syntax warning

.github/workflows/release.yml (Line: 18, Col: 9): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.x
uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: Install build
run: |
python -m pip install --upgrade pip
pip install build
- name: Build
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1