Skip to content

All projects starts

All projects starts #9

##
## Copyright (c) 2023-2024 Geosiris.
## SPDX-License-Identifier: Apache-2.0
##
---
name: Publish (pypiTest)
defaults:
run:
working-directory: energyml-utils
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build distribution
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install poetry
uses: ./.github/actions/prepare-poetry
with:
python-version: 3.9
- name: Build
run: |
poetry build
- name: Display folder
shell: bash
if: always()
run: |

Check failure on line 42 in .github/workflows/ci_energyml_utils_pull_request.yml

View workflow run for this annotation

GitHub Actions / Publish (pypiTest)

Invalid workflow file

The workflow is not valid. .github/workflows/ci_energyml_utils_pull_request.yml (Line: 42, Col: 14): Unrecognized named-value: 'GITHUB_WORKSPACE'. Located at position 1 within expression: GITHUB_WORKSPACE .github/workflows/ci_energyml_utils_pull_request.yml (Line: 53, Col: 17): Unrecognized named-value: 'GITHUB_WORKSPACE'. Located at position 1 within expression: GITHUB_WORKSPACE
echo "::debug::listing folder"
ls -R
echo `ls -R`
echo "GITHUB_WORKSPACE ${{ GITHUB_WORKSPACE }}"
- name: Save build artifacts
uses: actions/upload-artifact@v4
with:
name: Build-Artifact
if-no-files-found: error
path: ${{ GITHUB_WORKSPACE }}/energyml-utils/dist
publish:
name: Publish to PyPI
needs: [build]
runs-on: ubuntu-latest
steps:
# Retrieve the code and GIT history so that poetry-dynamic-versioning knows which version to upload
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get build artifacts
uses: actions/download-artifact@v4
with:
name: Build-Artifact
path: dist
- name: Install poetry
uses: ./.github/actions/prepare-poetry
with:
python-version: 3.9
- name: Upload to PyPI TEST
run: |
poetry config repositories.test-pypi https://test.pypi.org/legacy/
poetry config pypi-token.test-pypi ${{ secrets.POETRY_PYPI_TEST_TOKEN_VALUE }}
poetry publish --repository test-pypi