Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: update v tag #56

Merged
merged 3 commits into from
Dec 16, 2024
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