7 Commits

Author SHA1 Message Date
Jonathon Broughton 32c30bc59b Update main.yml 2025-02-18 08:19:45 +00:00
Chuck Driesler 9b12d06eee chore(deps): pin poetry better (#37) 2025-01-15 10:42:57 +00:00
Chuck Driesler 66f5194007 chore(ci): bump poetry (#36) 2024-12-01 19:30:06 +01:00
Chuck Driesler d7d61ba694 chore(sdk): bump sdk (#35) 2024-11-28 19:00:01 +00:00
dependabot[bot] 268969d7f2 chore(deps): bump actions/checkout from 4.1.6 to 4.1.7 (#27)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4.1.6...v4.1.7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-10 18:02:52 +00:00
Jonathon Broughton 0e0b8e9f04 Update specklpy to 2.19.6 to incorporate facepalm fixes (#29) 2024-11-10 18:02:35 +00:00
Gergő Jedlicska f3bb2f4d6a gergo/specklepy bump (#32)
* feat: bump to new specklepy

* feat: update specklepy

* bump specklepy
2024-10-03 16:36:51 +01:00
4 changed files with 672 additions and 525 deletions
+12 -10
View File
@@ -11,27 +11,29 @@ jobs:
FUNCTION_SCHEMA_FILE_NAME: functionSchema.json
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.6
- uses: actions/checkout@v4.1.7
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.3.2
virtualenvs-create: false
virtualenvs-in-project: false
installer-parallel: true
- name: Install poetry
run: |
pip install poetry==1.8.4 &&
poetry config virtualenvs.create false &&
poetry config virtualenvs.in-project false &&
poetry config installer.parallel true
- name: Restore dependencies
run: poetry install --no-root
- name: Extract functionInputSchema
id: extract_schema
run: |
python main.py generate_schema ${HOME}/${{ env.FUNCTION_SCHEMA_FILE_NAME }}
python main.py generate_schema "${HOME}/${{ env.FUNCTION_SCHEMA_FILE_NAME }}"
echo "Checking if functionSchema.json exists after generation..."
ls -lah "${HOME}/${{ env.FUNCTION_SCHEMA_FILE_NAME }}"
- name: Speckle Automate Function - Build and Publish
uses: specklesystems/speckle-automate-github-composite-action@0.8.1
with:
speckle_automate_url: ${{ env.SPECKLE_AUTOMATE_URL || vars.SPECKLE_AUTOMATE_URL || 'https://automate.speckle.dev' }}
speckle_automate_url: ${{ env.SPECKLE_AUTOMATE_URL || vars.SPECKLE_AUTOMATE_URL || 'https://automate.speckle.dev' }}
speckle_token: ${{ secrets.SPECKLE_FUNCTION_TOKEN }}
speckle_function_id: ${{ secrets.SPECKLE_FUNCTION_ID }}
speckle_function_input_schema_file_path: ${{ env.FUNCTION_SCHEMA_FILE_NAME }}
+1 -1
View File
@@ -2,7 +2,7 @@
FROM python:3.11-slim
# We install poetry to generate a list of dependencies which will be required by our application
RUN pip install poetry
RUN pip install poetry==1.8.4
# We set the working directory to be the /home/speckle directory; all of our files will be copied here.
WORKDIR /home/speckle
Generated
+657 -513
View File
File diff suppressed because it is too large Load Diff
+2 -1
View File
@@ -4,10 +4,11 @@ version = "0.1.0"
description = "Example function for Speckle Automate using specklepy"
authors = ["Gergő Jedlicska <gergo@jedlicska.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
specklepy = "^2.19.5"
specklepy = "^2.21.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"