-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (57 loc) · 1.87 KB
/
release.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: ✨ release
on:
release:
types: [published]
permissions:
contents: write
id-token: write
attestations: write
jobs:
publish:
name: publish artifacts
timeout-minutes: 60
runs-on: public-ledgerhq-shared-small
steps:
- name: Login to Ledger Artifactory
timeout-minutes: 10
id: jfrog-login
uses: LedgerHQ/actions-security/actions/jfrog-login@actions/jfrog-login-1
- name: Checkout
timeout-minutes: 10
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: "recursive"
- name: Setup python / PDM
timeout-minutes: 10
uses: ./.github/actions/pdm
- name: Install dependencies
timeout-minutes: 10
run: |
pdm install --dev --check --frozen-lockfile
pdm install --plugins
- name: Build library artifacts
timeout-minutes: 10
run: pdm build
- name: Upload library artifacts to Ledger Artifactory repository
timeout-minutes: 10
env:
PDM_PUBLISH_REPO: https://jfrog.ledgerlabs.net/artifactory/api/pypi/vault-pypi-prod-green
PDM_PUBLISH_USERNAME: ${{ steps.jfrog-login.outputs.oidc-user }}
PDM_PUBLISH_PASSWORD: ${{ steps.jfrog-login.outputs.oidc-token }}
run: pdm publish --no-build
- name: Upload library artifacts to PyPI
timeout-minutes: 10
env:
PDM_PUBLISH_PASSWORD: ${{ secrets.PYPI_PUBLIC_API_TOKEN }}
run: pdm publish --no-build
- name: Generate library build attestations
timeout-minutes: 10
uses: LedgerHQ/actions-security/actions/attest@actions/attest-1
with:
subject-path: dist/*
- name: Sign library artifacts
timeout-minutes: 10
uses: LedgerHQ/actions-security/actions/sign-blob@actions/sign-blob-1
with:
path: dist