Enable publishing with fixed version
This commit is contained in:
parent
a930ad0d1c
commit
751ed2e157
@ -6,15 +6,9 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches: '*'
|
branches: '*'
|
||||||
|
|
||||||
# Enable debug logging
|
|
||||||
env:
|
|
||||||
ACTIONS_STEP_DEBUG: true
|
|
||||||
RUNNER_DEBUG: true
|
|
||||||
ACTIONS_RUNNER_DEBUG: true
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
publish:
|
||||||
name: "Build"
|
name: "Build and publish"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: "Clone project repository"
|
- name: "Clone project repository"
|
||||||
@ -28,19 +22,27 @@ jobs:
|
|||||||
- name: "Install shiv"
|
- name: "Install shiv"
|
||||||
run: pip install shiv
|
run: pip install shiv
|
||||||
- name: "Create release"
|
- name: "Create release"
|
||||||
uses: cerc-io/action-gh-release@v1
|
uses: cerc-io/action-gh-release@gitea-v1
|
||||||
# We haven't decided how to trigger this release job.
|
# We haven't decided how to trigger this release job.
|
||||||
# It might be done on creation of a git tag
|
# It might be done on creation of a git tag
|
||||||
# Or it might be done on merge to a release branch
|
# Or it might be done on merge to a release branch
|
||||||
# Somehow by this point however we need to know the release version
|
# Somehow by this point however we need to know the release version
|
||||||
with:
|
with:
|
||||||
tag_name: "v1.2.4"
|
tag_name: "v1.2.5"
|
||||||
- name: "Build local shiv package"
|
- name: "Build local shiv package"
|
||||||
|
id: build
|
||||||
# Build has to be done after deciding on the version because
|
# Build has to be done after deciding on the version because
|
||||||
# we bundle the version into the build
|
# we bundle the version into the build
|
||||||
run: ./scripts/build_shiv_package.sh
|
run: |
|
||||||
|
./scripts/build_shiv_package.sh
|
||||||
|
result_code=$?
|
||||||
|
echo "::set-output name=package-file::$(ls ./package/*)"
|
||||||
|
exit $result_code
|
||||||
|
- name "Stage artifact file"
|
||||||
|
run: |
|
||||||
|
cp ${{ steps.build.outputs.package-file }} ./laconic-so
|
||||||
- name: "Upload release artifact"
|
- name: "Upload release artifact"
|
||||||
uses: cerc-io/action-gh-release@v1
|
uses: cerc-io/action-gh-release@gitea-v1
|
||||||
with:
|
with:
|
||||||
tag_name: "v1.2.4"
|
tag_name: "v1.2.5"
|
||||||
files: requirements.txt
|
files: ./laconic-so
|
||||||
|
Loading…
Reference in New Issue
Block a user