-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (50 loc) · 1.56 KB
/
publish_amal.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
on:
push:
tags:
- 'v*'
name: Publish Amalgamated Code
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: amalgamate
run: |
rm -f bms_parser.hpp bms_parser.cpp
python3 scripts/amalgamate.py bms_parser.hpp bms_parser.cpp src/*.cpp
# create new release
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
You can find the amalgamated code in the file `bms_parser.hpp` and `bms_parser.cpp`.
draft: false
prerelease: false
# upload amalgamated code
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./bms_parser.hpp
asset_name: bms_parser.hpp
asset_content_type: text/plain
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./bms_parser.cpp
asset_name: bms_parser.cpp
asset_content_type: text/plain