fix(release): use correct value for outputs #182
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: {} | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: open-turo/actions-gha/lint@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
semantic-release-extra-plugins: | | |
@open-turo/semantic-release-config | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: open-turo/actions-gha/test@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
# lint-oss tries to run this action against open source repositories not in | |
# open-turo to make sure this is usable outside the org. | |
# Repositories added to this list should have pre-commit hooks that don't | |
# require external tooling to be installed. | |
# Repositories added to this list must have passing pre-commit hooks. | |
lint-oss: | |
name: Lint / Open source | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
repos: | |
- tiangolo/fastapi | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: ${{ matrix.repos }} | |
- uses: actions/checkout@v4 | |
with: | |
path: actions-python | |
- uses: ./actions-python/lint | |
with: | |
checkout-repo: false | |
github-token: ${{ secrets.GITHUB_TOKEN }} |