Skip to content

Commit

Permalink
ci: fixing jf upload usage
Browse files Browse the repository at this point in the history
  • Loading branch information
pthierry-ledger committed Sep 12, 2024
1 parent 38686ca commit f7d97bc
Showing 1 changed file with 27 additions and 7 deletions.
34 changes: 27 additions & 7 deletions .github/workflows/publish-to-jfrog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,32 +17,52 @@ jobs:
permissions:
id-token: write
contents: read
attestations: write

steps:
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install build
- name: Install build basics
run: |
pip install build
pip install build wheel-filename blob
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: build package
run: python3 -m build .
run: python3 -m build . --sdist --wheel
- name: get back local build version
id: get_pkg_version
run: |
from wheel_filename import parse_wheel_filename
import glob
whl = str(glob.glob('dist/*.whl')[0]);
pwf = parse_wheel_filename('dist/' + whl);
with open(os.environ["GITHUB_OUTPUT"], "a") as gh_output:
delimiter = "".join(choices(ascii_letters, k=16))
gh_output.writelines([
f"pkg_version<<{delimiter}\n",
f"{pwf.version}\n",
delimiter + "\n",
])
shell: python
- name: Login to JFrog Ledger
uses: LedgerHQ/actions-security/actions/jfrog-login@actions/jfrog-login-1
- name: set jfrog Repo URL
run: jf pip-config --repo-resolve=${{ secrets.JFROG_PYPI_REPO_URL }}
- name: upload package
run: jf rt u dist/ --build-name=dts-util-devel --build-number=1 --module=dts-utils
run: jf rt u --build-name=dts-util-devel --build-number=1 --module=dts-utils 'dist/*.tar.gz' 'outpost-pypi-dev-green/outpost-pypi-dev-green/'
- name: Attest
id: attest
uses: LedgerHQ/actions-security/actions/attest@actions/attest-1
with:
subject-path: 'dist/*'
push-to-registry: true
subject-path: 'dist/*.tar.gz'
push-to-registry: false
- name: test install from jfrog
run: |
jf pip install dts-utils
jf pip install dts-utils~=${{ steps.get_pkg_version.outputs.pkg_version }}
pip show dts-utils

0 comments on commit f7d97bc

Please sign in to comment.