-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (41 loc) · 1.26 KB
/
release.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
# Publish release
name: "release"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: True
on: ["workflow_dispatch"]
defaults:
run:
shell: "pwsh"
jobs:
release:
permissions:
contents: "write"
id-token: "write"
attestations: "write"
runs-on: "ubuntu-22.04"
environment:
name: "release"
url: "https://pypi.org/p/boilercore"
steps:
- uses: "actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332" # v4.1.7
- uses: "astral-sh/setup-uv@9f1f1fece28798fe5e7ece00f4243abe886974b2" # v3.0.0
with:
version: "0.4.15"
enable-cache: true
cache-dependency-glob: |
**/uv.lock
.github/workflows/**
- run: "./Invoke-Uv.ps1 -Build"
- uses: actions/attest-build-provenance@5e9cb68e95676991667494a6a4e59b8a2f13e1d0 # v1.3.3
with:
subject-path: "dist/**"
- run: "gh release upload '${{ github.event.release.tag_name }}' dist/**"
env:
GITHUB_TOKEN: "${{ github.token }}"
- uses: "pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0" # v1.9.0
changerelease:
needs: "release"
permissions:
contents: "write"
uses: "./.github/workflows/changerelease.yml"