Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:
jobs:
release-please:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: GoogleCloudPlatform/release-please-action@v4
id: release
Expand All @@ -19,7 +19,7 @@ jobs:
release_created: ${{ steps.release.outputs.release_created }}

pypi:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: release-please
if: ${{ needs.release-please.outputs.release_created }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# path: ./wheelhouse/*.whl
sdist:
name: Build sdist
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -46,7 +46,7 @@ jobs:

publish:
name: Publish wheels to pypi
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
Expand Down
4 changes: 2 additions & 2 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% set name = "loopprojectfile" %}

package:
name: "{{ name|lower }}"
version: "{{ environ.get('GIT_DESCRIBE_TAG', '') }}"
name: {{ name|lower }}
version: "{{ environ.get('GIT_DESCRIBE_TAG', '').lstrip('v') }}"

source:
git_url: https://github.com/Loop3D/LoopProjectFile.git
Expand Down
Loading