-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (44 loc) · 1.33 KB
/
publish-to-jfrog.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# SPDX-FileCopyrightText: 2024 Ledger SAS
#
# SPDX-License-Identifier: Apache-2.0
name: Upload Python Package to jfrog
on:
release:
types: [released]
workflow_dispatch:
jobs:
deploy:
runs-on: outpost-os-shared-small
environment: ledger-publish
permissions:
id-token: write
contents: read
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install build
run: |
pip install build
- run: curl -v https://${{ env.JFROG_HOST_URL }}
- name: Checkout code
uses: actions/checkout@v4
- name: build package
run: python3 -m build .
- 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
- name: Attest
id: attest
uses: LedgerHQ/actions-security/actions/attest@actions/attest-1
with:
subject-path: 'dist/*'
push-to-registry: true
- name: test install from jfrog
run: |
jf pip install dts-utils
pip show dts-utils