2023-04-07 01:04:00 +00:00
|
|
|
name: Publish
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: '*'
|
|
|
|
push:
|
|
|
|
branches: '*'
|
|
|
|
|
|
|
|
jobs:
|
2023-04-10 04:41:01 +00:00
|
|
|
publish:
|
|
|
|
name: "Build and publish"
|
2023-04-07 01:04:00 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: "Clone project repository"
|
|
|
|
uses: actions/checkout@v3
|
2023-04-10 12:43:23 +00:00
|
|
|
- name: "Get build info"
|
2023-04-10 12:24:00 +00:00
|
|
|
id: build-info
|
|
|
|
run: |
|
2023-04-10 12:43:23 +00:00
|
|
|
./scripts/create_build_tag_file.sh
|
|
|
|
build_tag=$(cat ./app/data/build_tag.txt)
|
2023-04-10 12:55:25 +00:00
|
|
|
echo "build-tag=v${build_tag}" >> $GITHUB_OUTPUT
|
2023-04-07 01:04:00 +00:00
|
|
|
- name: "Install Python"
|
|
|
|
uses: cerc-io/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: '3.8'
|
|
|
|
- name: "Print Python version"
|
|
|
|
run: python3 --version
|
|
|
|
- name: "Install shiv"
|
|
|
|
run: pip install shiv
|
|
|
|
- name: "Build local shiv package"
|
2023-04-10 04:41:01 +00:00
|
|
|
id: build
|
|
|
|
run: |
|
|
|
|
./scripts/build_shiv_package.sh
|
|
|
|
result_code=$?
|
2023-04-10 12:24:00 +00:00
|
|
|
echo "package-file=$(ls ./package/*)" >> $GITHUB_OUTPUT
|
2023-04-10 04:41:01 +00:00
|
|
|
exit $result_code
|
2023-04-10 04:44:15 +00:00
|
|
|
- name: "Stage artifact file"
|
2023-04-10 04:41:01 +00:00
|
|
|
run: |
|
2023-04-10 12:54:30 +00:00
|
|
|
cp ${{ steps.build.outputs.package-file }} ./laconic-so
|
2023-04-10 12:24:00 +00:00
|
|
|
- name: "Create release"
|
2023-04-10 04:41:01 +00:00
|
|
|
uses: cerc-io/action-gh-release@gitea-v1
|
2023-04-07 01:33:27 +00:00
|
|
|
with:
|
2023-04-10 12:24:00 +00:00
|
|
|
tag_name: "${{ steps.build-info.outputs.build-tag }}"
|
2023-04-10 04:41:01 +00:00
|
|
|
files: ./laconic-so
|