Merge branch 'main' into publish-test

This commit is contained in:
David Boreham 2023-04-10 11:20:33 -06:00
commit b2070dfaa9

View File

@ -18,7 +18,6 @@ jobs:
run: | run: |
build_tag=$(./scripts/create_build_tag_file.sh) build_tag=$(./scripts/create_build_tag_file.sh)
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:
@ -27,20 +26,20 @@ jobs:
run: python3 --version run: python3 --version
- name: "Install shiv" - name: "Install shiv"
run: pip install shiv run: pip install shiv
- name: "Test things"
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
- name: "Create release" - name: "Create release"
uses: cerc-io/action-gh-release@gitea-v1 uses: cerc-io/action-gh-release@gitea-v1
with: with:
tag_name: "${{ steps.build-info.outputs.build-tag }}" tag_name: ${{ steps.build-info.outputs.build-tag }}
# On the publish test branch, mark our release as a draft
draft: ${{ github.ref == 'refs/heads/publish-test' }}
files: ./laconic-so files: ./laconic-so