-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathgenerate_release_yaml.py
75 lines (65 loc) · 2.27 KB
/
generate_release_yaml.py
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
65
66
67
68
69
70
71
72
73
74
75
from subprocess import check_output
import os
from util import get_blobs
BASE_TEMPLATE = """# Based on example from https://github.com/actions/upload-release-asset
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- '2*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: Upload Release Asset
jobs:
build:
name: Upload Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build pkg
run:
sudo apt update || apt update;
sudo apt-get install -y python3 python3-pip || apt-get install -y python3 python3-pip;
./build.sh
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.ACTION_PAT }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: true
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.ACTION_PAT }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: blobs/cyclecloud-pbspro-pkg-${{ steps.get_version.outputs.version }}.tar.gz
asset_name: cyclecloud-pbspro-pkg-${{ steps.get_version.outputs.version }}.tar.gz
asset_content_type: application/gzip
%(upload_steps)s
"""
UPLOAD_TEMPLATE = """
- name: Upload %(fname)s;
id: upload-%(index)s
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.ACTION_PAT }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: blobs/%(fname)s
asset_name: %(fname)s;
asset_content_type: application/octet-stream"""
cwd = os.path.abspath(os.path.dirname(__file__))
os.chdir(cwd)
blobs = get_blobs()
upload_steps = []
for n, fname in enumerate(blobs):
upload_steps.append(UPLOAD_TEMPLATE % {"fname": fname, "index": n})
print(BASE_TEMPLATE % {"upload_steps": "\n".join(upload_steps)})