-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (51 loc) · 1.75 KB
/
Copy pathbuild.yml
File metadata and controls
55 lines (51 loc) · 1.75 KB
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
name: Build and push to PyPI
on:
workflow_run:
workflows: ["Release on push to main branch"]
branches: [main]
types:
- completed
jobs:
get-version:
if: github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-latest
outputs:
tag_name: ${{ steps.get-tag-name.outputs.tag_name }}
steps:
- name: Download artifact
uses: actions/github-script@v6
with:
script: |
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: context.payload.workflow_run.id,
});
let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => {
return artifact.name == "version_number"
})[0];
let download = await github.rest.actions.downloadArtifact({
owner: context.repo.owner,
repo: context.repo.repo,
artifact_id: matchArtifact.id,
archive_format: 'zip',
});
let fs = require('fs');
fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/version_number.zip`, Buffer.from(download.data));
- name: Unzip artifact
run: unzip version_number.zip
- name: Get tag name
id: get-tag-name
run: |
echo "tag_name=$(cat version_number)" >> $GITHUB_OUTPUT
publish-pypi:
runs-on: ubuntu-latest
needs: get-version
if: needs.get-version.outputs.tag_name != ''
steps:
- uses: actions/checkout@v3
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v1.17
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
ignore_dev_requirements: "yes"