-
-
Notifications
You must be signed in to change notification settings - Fork 164
57 lines (46 loc) · 1.51 KB
/
release-gh-draft.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Draft Github Release
on:
push:
branches: 'release/**'
jobs:
manylinux:
uses: ./.github/workflows/build-manylinux.yml
macos:
uses: ./.github/workflows/build-macos.yml
windows:
uses: ./.github/workflows/build-windows.yml
sdist:
uses: ./.github/workflows/build-ubuntu-sdist.yml
draft-release:
needs: [manylinux-aarch64, manylinux, macos, windows, sdist]
runs-on: ubuntu-latest
permissions:
id-token: write
attestations: write
contents: write
steps:
- uses: actions/checkout@v4.2.2
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: pygame-wheels
merge-multiple: true
# Strips 'release/' from the ref_name, this helps us access the version
# name as 'steps.ver.outputs.VER'
- name: Get version
id: ver
run: echo "VER=${GITHUB_REF_NAME#'release/'}" >> $GITHUB_OUTPUT
- name: Generate release attestation
uses: actions/attest-build-provenance@v2.2.0
with:
subject-path: "pygame-wheels/*"
- name: Draft a release
uses: softprops/action-gh-release@v2
with:
draft: true
prerelease: ${{ contains(steps.ver.outputs.VER, 'dev') }}
files: pygame-wheels/*
name: '${{ steps.ver.outputs.VER }} - {TODO put a title here} [DRAFTED BY CI]'
tag_name: ${{ steps.ver.outputs.VER }}
target_commitish: ${{ github.ref_name }}
generate_release_notes: true