-
Notifications
You must be signed in to change notification settings - Fork 191
60 lines (55 loc) · 1.85 KB
/
generate-pre-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
name: generate-pre-release
on:
workflow_run:
workflows: [debian-sapi-generator-tool]
types: [completed]
branches: [main]
jobs:
prerelease:
runs-on: ubuntu-latest
env:
ARTIFACT_NAME: sapi_generator_tool-linux
steps:
- uses: actions/checkout@v3
- name: Prepare environment
run: mkdir -p "$GITHUB_WORKSPACE/build"
- name: Download Build Artifact
uses: actions/github-script@v6
with:
script: |
let artifactName = process.env.ARTIFACT_NAME;
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 == artifactName
})[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}/build/${artifactName}.zip`,
Buffer.from(download.data)
);
- name: "Repackage as *-<arch>.tar.gz"
run: |
( \
cd "$GITHUB_WORKSPACE/build"; \
unzip "${ARTIFACT_NAME}.zip"; \
tar czf sapi_generator_tool-linux-x86_64.tar.gz \
sapi_generator_tool-linux-x86_64
)
- name: Create Pre-release
uses: marvinpinto/[email protected]
with:
repo_token: "${{secrets.GITHUB_TOKEN}}"
automatic_release_tag: "latest"
prerelease: true
files: |
${{github.workspace}}/build/sapi_generator_tool-linux-x86_64.tar.gz