-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (34 loc) · 985 Bytes
/
on-release-main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: release-main
on:
release:
types: [published]
branches: [main]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up the environment
uses: ./.github/actions/setup-poetry-env
- name: Export tag
id: vars
run: echo tag=${GITHUB_REF#refs/*/} >> $GITHUB_OUTPUT
- name: Build and publish
run: |
source .venv/bin/activate
poetry version $RELEASE_VERSION
make build-and-publish
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}
# deploy-docs:
# needs: publish
# runs-on: ubuntu-latest
# steps:
# - name: Check out
# uses: actions/checkout@v3
# - name: Set up the environment
# uses: ./.github/actions/setup-poetry-env
# - name: Deploy documentation
# run: poetry run mkdocs gh-deploy --force