Skip to content

chore(pipeline): build causy version on git tag #1

chore(pipeline): build causy version on git tag

chore(pipeline): build causy version on git tag #1

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: 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/*"