Publish drafts on the test branch

This commit is contained in:
David Boreham 2023-04-10 11:20:15 -06:00
parent e5cf52f188
commit 49f14f3191

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,8 +26,6 @@ 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: |
@ -42,5 +39,7 @@ jobs:
- 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