-
-
Notifications
You must be signed in to change notification settings - Fork 157
64 lines (52 loc) · 1.88 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
58
59
60
61
62
63
64
name: Draft Github Release
on:
push:
branches: 'release/**'
jobs:
manylinux-aarch64:
runs-on: ubuntu-latest
outputs:
pipeline_id: ${{ steps.circleci.outputs.id }}
steps:
- name: Trigger CircleCI builds on release
id: circleci
uses: CircleCI-Public/[email protected]
env:
CCI_TOKEN: ${{ secrets.CCI_TOKEN }}
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
steps:
- uses: actions/[email protected]
- name: Download all artifacts
uses: actions/download-artifact@v3
- name: Download manylinux-aarch64 artifacts from CircleCI
continue-on-error: true # incase things don't work here, can manually handle it
run: >
python3 buildconfig/ci/circleci/pull_circleci_artifacts.py
${{ secrets.CCI_TOKEN }}
${{ needs.manylinux-aarch64.outputs.pipeline_id }}
pygame-wheels-manylinux
# 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: Draft a release
uses: softprops/action-gh-release@v1
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