Skip to content

Fix beat position

Fix beat position #24

Workflow file for this run

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