parent
d72dcb6c74
commit
7bcad7b936
@ -1,10 +1,10 @@
|
|||||||
name: Publish
|
name: Publish
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
|
||||||
branches: '*'
|
|
||||||
push:
|
push:
|
||||||
branches: '*'
|
branches:
|
||||||
|
- main
|
||||||
|
- publish-test
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
@ -16,9 +16,9 @@ jobs:
|
|||||||
- name: "Get build info"
|
- name: "Get build info"
|
||||||
id: build-info
|
id: build-info
|
||||||
run: |
|
run: |
|
||||||
./scripts/create_build_tag_file.sh
|
build_tag=$(./scripts/create_build_tag_file.sh)
|
||||||
build_tag=$(cat ./app/data/build_tag.txt)
|
|
||||||
echo "build-tag=v${build_tag}" >> $GITHUB_OUTPUT
|
echo "build-tag=v${build_tag}" >> $GITHUB_OUTPUT
|
||||||
|
echo "Build tag set to v${build_tag}"
|
||||||
- name: "Install Python"
|
- name: "Install Python"
|
||||||
uses: cerc-io/setup-python@v4
|
uses: cerc-io/setup-python@v4
|
||||||
with:
|
with:
|
||||||
@ -28,14 +28,14 @@ jobs:
|
|||||||
- name: "Install shiv"
|
- name: "Install shiv"
|
||||||
run: pip install shiv
|
run: pip install shiv
|
||||||
- name: "Test things"
|
- name: "Test things"
|
||||||
run: echo "Build tag is: ${{ steps.build-info.outputs.build-tag }}"
|
run: echo "Build tag is ${{ steps.build-info.outputs.build-tag }}"
|
||||||
- name: "Build local shiv package"
|
- name: "Build local shiv package"
|
||||||
id: build
|
id: build
|
||||||
run: |
|
run: |
|
||||||
./scripts/build_shiv_package.sh
|
./scripts/build_shiv_package.sh
|
||||||
result_code=$?
|
result_code=$?
|
||||||
echo "package-file=$(ls ./package/*)" >> $GITHUB_OUTPUT
|
echo "package-file=$(ls ./package/*)" >> $GITHUB_OUTPUT
|
||||||
exit $result_code
|
exit $result_code
|
||||||
- name: "Stage artifact file"
|
- name: "Stage artifact file"
|
||||||
run: |
|
run: |
|
||||||
cp ${{ steps.build.outputs.package-file }} ./laconic-so
|
cp ${{ steps.build.outputs.package-file }} ./laconic-so
|
||||||
|
Loading…
Reference in New Issue
Block a user