Skip to content

chore(pipelines): install correct python version in the release pipel… #2

chore(pipelines): install correct python version in the release pipel…

chore(pipelines): install correct python version in the release pipel… #2

Workflow file for this run

name: Releases
permissions:
contents: write
issues: write
packages: write
pull-requests: write
repository-projects: write
security-events: write
statuses: write
on:
push:
tags:
- '*'
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: [ "3.11" ]
platform: [ macos-latest ] # TODO: change add ubuntu-latest
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry
poetry self add poetry-version-plugin
poetry install
- name: Build
run: |
poetry build
- uses: ncipollo/release-action@v1
with:
artifacts: "dist/*"